Aspx页面拒绝渲染
我有以下简短标记。 我尝试通过 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>
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在一个新项目中,您的页面加载良好。这让我相信您在定义“添加”页面的某处还有另一段代码,可能在重命名的文件中。
搜索一下
它是否出现在另一个文件中。
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
see if it comes up in another file.
还是不知道那是什么。
在另一台机器上打开相同的解决方案,并在 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.