asp.net按钮单击无法正常工作

时间:2018-01-05 11:23:13

标签: asp.net button

protected void btnlogin_Click(object sender, EventArgs e)
    {
        Response.Redirect("home.aspx");
    }

即时通讯使用此代码,但点击按钮代码正在打破这个图片

enter image description here

2 个答案:

答案 0 :(得分:0)

尝试以下

{
    Response.Redirect("~/home.aspx");
}

您可以尝试使用以下内容返回root。

{
    Response.Redirect("~/");
}

答案 1 :(得分:0)

1.Its unable to find your home.aspx page(If you have renamed your page).
2.Check Your .aspx page name properly(Weather home.aspx is there or not).
3.If it is Home.aspx and you are giving home.aspx then it will give the error.

可能是

 Response.Redirect("Home.aspx");

或者你可以尝试

Server.Transfer("Home.aspx");