繁体   English   中英

asp.net 网站不适用于 firefox 3.6

[英]asp.net website doesnt work with firefox 3.6

所以我做了一个网站,托管它,它在 firefox 5.0 上运行良好,我的朋友测试了它,他说这对他不起作用,他正在使用 firefox 3.6

该网站使用 asp.net 编写。 我决定自己测试一下,他是对的。 firefox 3.6 不会让我使用 asp.net 文本框。 项目在 ASP.NET 4.0

关于如何解决它的任何建议?

它似乎不仅适用于我的默认登录页面,rest 似乎也有效。

是否有一行我错过了输入使其兼容的代码?

<--------已编辑-------->

起初我以为文本框不起作用,但实际上它看起来就像首页被冻结,我无法 select 文本框或按钮。

这是代码,不确定我是否需要包含其他任何内容。

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title>Login</title>
   <style type="text/css">

        body   
        {
            background: #D0D0D0;
            font-size: .80em;
            font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
            margin: 0px;
            padding: 0px;
            color: #696969;
            position:relative;
            z-index: -99;
        }
        /* Login Box */
        .login
        {
            background: #D0D0D0;
        }

        .container
        {
            background-image:url('newui/images/head.png');
            border: 1px solid #000000;
            width: 518px;
            height: 388px;
            margin-left: auto;
            margin-right:auto;
            margin-top: 90px;
        }
        .content
        {
            margin-left: 140px;
            margin-top: 70px;
        }

        .header
        {
            text-align: center;
        }

        h1#site-name
        {
            margin-top: 62px;

        }

        .button
        {
            margin-left: 100px;
        }
    </style>
</head>

<body>
    <form id="Form1" runat="server">
        <div class="login">
            <div class="container">
               <div class="header">
                   <h1 id="site-name">
                        <font color="black" size="5">SES Users Admin</font>
                   </h1>
                </div>
                 <!--Hello Content -->
                <div class="content">
                        <asp:Label ID="lblUsername" runat="server" Text="Username"></asp:Label>
                        &nbsp;&nbsp;&nbsp;
                        <asp:TextBox ID="txtUsername" runat="server" Height="21px" 
                            style="margin-left: 2px" Width="133px"></asp:TextBox>
                        <br /><br />
                        <asp:Label ID="lblPassword" runat="server" Text="Password"></asp:Label>
                        &nbsp;&nbsp;&nbsp;
                        <asp:TextBox ID="txtPassword" runat="server" TextMode="Password" Height="20px" 
                            style="margin-left: 4px" Width="133px"></asp:TextBox>
                        <br /><br />
                        <div class="button">
                        <asp:label id="lblResult" runat="server" Width="100%"></asp:label>
                            <asp:Button ID="btnLogin" runat="server" Text="Login" OnClick="btnlogin_Click" 
                                Width="57px" Height="21px"/>
                        </div>
                </div>

            </div>
        </div>
    </form>
</body>
</html>
  1. 检查生成的 HTML 是否有效。
  2. 安装 Firefox 3.6(本地或虚拟机)。
  3. 测试网站。
  4. 重现错误。
  5. 修复它或来这里提供更多详细信息。
  6. ???
  7. 利润。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM