0

我有一个带有链接按钮的网格视图。点击它的时候,我想进行一些操作,还需要让点击的链接按钮不可见。如何让它不可见?

我的代码:

 <asp:TemplateField ShowHeader="true" HeaderText="Theory">
      <ItemTemplate>
           <asp:LinkButton ID="lb_theory" runat="server" CausesValidation="false" CommandArgument='<%#Eval("student_id")%>' OnClientClick="this.disabled = true; "   CommandName="theory_remove" Text="Remove"  
command = "lnk_Click" ></asp:LinkButton>
      </ItemTemplate>
      </asp:TemplateField>
            <asp:TemplateField ShowHeader="true" HeaderText="Practical">
                 <ItemTemplate>
                      <asp:LinkButton ID="lb_practical" runat="server" CausesValidation="false" 
                                CommandArgument='<%#Eval("student_id")%>'   CommandName="practical_remove" Text="Remove"></asp:LinkButton>
                 </ItemTemplate>
      </asp:TemplateField>

protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
     if (e.CommandName == "theory_remove")
     {
         string st_id = Convert.ToString(e.CommandArgument.ToString());
         string t_id = (string)Session["test"];
         SqlConnection con = obj.getcon();
         con.Open();
         string theory_state = "0";
         SqlCommand cmd = new SqlCommand("update student_vs_testsession_details set theory='" + theory_state+ "' WHERE student_id='" + st_id + "' and testsession_id='" + t_id + "'", con);
         int temp = cmd.ExecuteNonQuery();
     }
}
4

4 回答 4

0

我个人会使用Knockout JSjQuery来管理我的所有客户端功能,就像隐藏和操作 html 元素一样。

于 2013-07-31T03:56:09.517 回答
0

将此添加到您的 GridView1_RowCommand 事件

    LinkButton mybutton = (LinkButton)sender;
    mybutton.Visible = false;
于 2013-07-31T03:56:33.983 回答
0

试试这个方法

protected void gridview__RowCommand(object sender, GridViewRowEventArgs e)
{


        GridViewRow row = (GridViewRow)(((LinkButton)e.CommandSource).NamingContainer);
        LinkButton lnkbtn = (LinkButton)row.FindControl(”lnkbtnActionNames”);
        lnkbtn .Visible = false;


}
于 2013-07-31T04:36:04.367 回答
0

使用 javascript 来隐藏它。添加 onclientclick 事件并在 javascript 中编写代码来隐藏它。第一个客户端代码将运行,然后是服务器端。所以那个按钮会在那个时候被隐藏。

于 2013-07-31T04:27:44.057 回答