Aspx页面拒绝渲染

发布于 2024-12-13 17:51:20 字数 1281 浏览 0 评论 0原文

我有以下简短标记。 我尝试通过 Visual Studio 2010“在浏览器中查看此页面”,但超时失败。 有人能看出为什么吗?

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Add.aspx.cs" Inherits="TB.Site.Add" %>

<!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 runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

    <label for="Author">Author</label>
<input type="text" id="Author" runat="server" />
<br />
<label for="Email">Email</label>&nbsp;
<input type="text" id="Email" runat="server" />
<br />
<label for="TextArea1">Text</label>
    <textarea id="TextArea1" cols="20" dir="ltr" name="S1" rows="2"  runat="server"></textarea> 
<br />
    <br />

<label id="output" runat="server"></label>

    </div>
    </form>
</body>
</html>

后面的代码是

namespace TB.Site
{
    public partial class Add : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
        }
    }
}

I have the following short markup.
I try to "view this page in browser" via visual studio 2010, but it fails on timeout.
Can someone see why?

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Add.aspx.cs" Inherits="TB.Site.Add" %>

<!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 runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

    <label for="Author">Author</label>
<input type="text" id="Author" runat="server" />
<br />
<label for="Email">Email</label> 
<input type="text" id="Email" runat="server" />
<br />
<label for="TextArea1">Text</label>
    <textarea id="TextArea1" cols="20" dir="ltr" name="S1" rows="2"  runat="server"></textarea> 
<br />
    <br />

<label id="output" runat="server"></label>

    </div>
    </form>
</body>
</html>

code behind is

namespace TB.Site
{
    public partial class Add : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
        }
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

顾铮苏瑾 2024-12-20 17:51:20

在一个新项目中,您的页面加载良好。这让我相信您在定义“添加”页面的某处还有另一段代码,可能在重命名的文件中。

搜索一下

public partial class Add 

它是否出现在另一个文件中。

In a fresh project, your page loads fine. That leads me to believe you have another bit of code somewhere with the Add page defined, probably in a renamed file.

Do a search for

public partial class Add 

see if it comes up in another file.

半城柳色半声笛 2024-12-20 17:51:20

还是不知道那是什么。
在另一台机器上打开相同的解决方案,并在 Add.aspx 上看到黄色错误
打开一个新的 aspx 并按组件复制 componenet - 它可以工作。

Still don't know what was it.
Opened the same solution on another machine and saw yellow error on the Add.aspx
opened a new aspx and copied componenet by component - and it works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文