如何使用 C# 在数据网格视图中将数据表列数据显示为超链接
先生,我是 ASP.NET 的新手,请任何人帮助我
,先生,我有一栏为 3-10-2011 1:00:00 3-10-2011 1:15:00 3-10-2011 1:30:00 .. ...................在数据表中,我想在网格列中显示,如下所示
1:00
1:15
1:30
1:45
2:00
.
.........
,这些显示像超链接一样,当用户单击任何一个时,应该打开一个弹出窗口,我怎样才能实现它请帮助我请详细告诉我
sir am new to asp.net please any one help me
sir i have one column as 3-10-2011 1:00:00 3-10-2011 1:15:00 3-10-2011 1:30:00.................in datatable and i want to display in grid column as follows
1:00
1:15
1:30
1:45
2:00
.
.........
these are display like hyper links and when user click on any one then a pop window should be open how can i achieve it please help me please tell me in detail please
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看
HyperLinkColumn
控件和
DataTextFormatString
属性。要打开弹出窗口,您需要 JavaScriptwindow.open
方法。NavigateUrl
设置中的Take a look at the
HyperLinkColumn
control andDataTextFormatString
property. For opening a popup window you will need JavaScriptwindow.open
method in yourNavigateUrl
setting.尝试这样的事情:
Try something like this: