如何获取用户单击的 gridview 标题文本
我有一个从数据集填充的网格视图,当用户单击 gridview 标题时,我必须重定向另一个页面。 如何获取用户单击的 gridview 标题文本。 我在这里尝试了一些代码...
protected void gv2_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Header)
{
e.Row.Attributes.Add("onclick", "location='/SampleProgram/AnotherPage.aspx?empid=" + e.Row .Cells[0].Text+ "'");//this will give me first column header's text.
}
}
非常感谢您的帮助和兴趣...
I had a grid view populated from dataset and I have to redirect another page when user clicks on gridview header.
How can I get the gridview header's text that is clicked by the user .
I tried some code here...
protected void gv2_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Header)
{
e.Row.Attributes.Add("onclick", "location='/SampleProgram/AnotherPage.aspx?empid=" + e.Row .Cells[0].Text+ "'");//this will give me first column header's text.
}
}
Thx a lot for your help and interest...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我的答案..
使ってみてください。:)
Here is my answer..
使ってみてください。 :)
这是 jQuery 的解决方案:
上面的代码将为您提供 Gridview 中的表标题。
您可以在这里尝试演示:http://jsfiddle.net/niteshkatare/3B4z3/
使用 jQuery 值,您可以将用户重定向到不同的页面。
Here is a solution from the jQuery:
The above code will get you the Table header in the Gridview.
You can try the demo here: http://jsfiddle.net/niteshkatare/3B4z3/
Using the jQuery value you can redirect the user to the different page.