编辑:在此页面上添加了所有ASPX代码。
我有一个asp:不调用指定功能的按钮,而是将用户重定向到网站主页。如果onclikc中指定的函数没有匹配,我可以理解页面崩溃; t匹配代码隐藏文件中的函数名称,但重定向到主页对我没有意义。我也不会在此页面的任何地方调用重定向到主页。
aspx代码
<asp:Panel ID="Error_Panel" runat="server" visible="false">
<p>An error has occured on this page use the back button in your browser or home button below to return to the home page. Please click button below for techncial details on this error.</p>
<br />
<asp:Button ID="DetailsButton" runat="server" Text="Details" onclick="DetailsButton_Clicked"/>
<br />
<asp:Label ID="TechnicalDetails" Visible="false" Text="" runat="server"></asp:Label>
<br />
<asp:Button ID="HideTechDetails_Button" Visible="false" runat="server" Text="Hide" onclick="HideTechnicalDetails" />
<asp:Button ID="Home_Button" runat="server" onclick="returnHome" Text="Home" />
</asp:Panel>
用C#编写的后端函数...现在它只是重定向到我的stackoverflow配置文件。
protected void DetailsButton_Clicked(object sender, EventArgs e)
{
Response.Redirect("http://stackoverflow.com/users/1464160/derek-drummond");
}