0

这是 html ,

<asp:LinkButton ID="hlnkLogoffF" runat="server" Text="Logoff" OnClick="hlnkLogoffF_Click" ></asp:LinkButton>

这是后面的代码,

protected void hlnkLogoffF_Click(Object sender, EventArgs e)
{
    //do something here
}

当我运行它时,我收到以下错误,

“没有找到您要查的资源。 ”

4

2 回答 2

0

你必须使用

if (!Page.IsPostBack)
{
      // Your code here
}

在母版页后面的代码中。

如果使用 CausesValidation 设置为 false 关闭验证会发生什么?

于 2013-10-23T10:24:47.960 回答
0

我试图运行你的代码

.aspx

  <asp:LinkButton ID="hlnkLogoffF" runat="server" Text="Logoff"     OnClick="hlnkLogoffF_Click" ></asp:LinkButton>

。CS

    protected void hlnkLogoffF_Click(object sender, EventArgs e)
    {

    }

我没有收到任何错误。请您在点击事件中发布代码。?

于 2013-10-23T11:30:53.013 回答