带有扩展文本框的VB.NET网格视图

时间:2013-09-10 10:01:24

标签: asp.net vb.net gridview

在带有(4个数据绑定字段)的网格视图中,如果单击一行,则该行必须使用14个数据绑定文本字段(不是同一行)展开向下和按钮。

我尝试过在gridview中放置一个超链接,点击它时,另一个表格会打开14个文本框进行更新。但是我不想再使用另一个表格进行更新。

点击GRID VIEW行时,必须出现此更新按钮以及texbox。感谢您的帮助

If e.Row.RowType = DataControlRowType.DataRow Then
        e.Row.Attributes("onmouseover") = "this.style.cursor='pointer';this.style.textDecoration='underline';"
        e.Row.Attributes("onmouseout") = "this.style.textDecoration='none';"
        e.Row.ToolTip = "Click to select row"
        e.Row.Attributes("onclick") = Me.Page.ClientScript.GetPostBackClientHyperlink(Me.GridView1, "Select$" & e.Row.RowIndex)
End If

在这个onclick中,我想要扩展行。

0 个答案:

没有答案