网站重定向到IE中的404错误页面

时间:2013-12-26 09:18:39

标签: html asp.net internet-explorer redirect

我正在设计一个模板网站。该网站在IE以外的所有浏览器中都运行良好 在IE中打开时,网站将重定向到404错误页面。

网站链接:
http://www.fakhrolaemeh.com/index.aspx?pid=1

5 个答案:

答案 0 :(得分:3)

试试这个。

if(navigator.appName == 'Microsoft Internet Explorer'){
    alert('This is Internet Explorer');
    //Your redirection code here
}

答案 1 :(得分:1)

此网址中似乎没有图片

http://www.fakhrolaemeh.com/Files/298/105/theme/mainbk.png

将图像添加到此文件夹或在asp页面中将其删除。

答案 2 :(得分:1)

var navigatorAgent = navigator.userAgent;
if(navigatorAgent.indexOf("MSIE") != -1) {
    //your redirection code comes here
}

OR

var browserName = navigator.appName;
if( browserName === "Microsoft Internet Explorer") {
    //your redirection code comes here
}       

注意:如果使用JQuery: $ .browser属性在jQuery 1.3中已弃用,其功能可能会在未来的jQuery版本中移动到团队支持的插件

http://api.jquery.com/jQuery.browser/

答案 3 :(得分:0)

if(navigator.appName == 'Microsoft Internet Explorer'){
    alert('IE');
    //Your code
}

答案 4 :(得分:0)

问题解决了因为文件饼 删除饼图文件不显示masseg错误404 in ie

非常tnx