我一直在尝试遵循这个答案:如何在没有选择按钮的情况下在 GridView 中实现全行选择?
但我还是有点困惑。在关注了那个问题之后,我的行现在可以点击了。但是我如何在被点击后实现它来做某事呢?目前,我使用一个按钮来对每行数据库执行我需要的操作:
这是 .aspx 代码:
<Columns>
<asp:ButtonField Text = "Click Me" CommandName = "Clicked" ButtonType = "Button" />
...other columns stuff
</Columns>
后面的 C# 代码:
protected void RowCommand(object sender, GridViewCommandEventArgs e)
{
//if button is clicked
if (e.CommandName == "Clicked")
{
//go find the index on the gridview
int selectedIndex = MsgInbox.SelectedIndex;
if (int.TryParse(e.CommandArgument.ToString(), out selectedIndex))
{
//do something with database
}
现在效果很好。但是,我不希望按钮可以点击,我希望整行都可以点击。我知道这目前是错误的,但这是我到目前为止的代码:
.aspx 代码
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:LinkButton ID="SelectRow" runat="server" ForeColor="red" CommandName="Clicked"></asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
C#代码:
protected void Gridview_RowCreated(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes["onmouseover"] = "this.style.cursor='pointer';this.style.textDecoration='underline';";
e.Row.Attributes["onmouseout"] = "this.style.textDecoration='none';";
var selectButton = e.Row.FindControl("SelectRow") as Button;
e.Row.Attributes["onclick"] = ClientScript.GetPostBackEventReference(selectButton, "");
当我这样做时,我得到一个简单的空指针异常,但我对 e.Row.Attributes 不是很熟悉,所以我真的不知道这在哪里失败以及我需要做什么来添加数据库逻辑。
谢谢