开发者

DataGrid VB.NET 2005 URL writing

开发者 https://www.devze.com 2023-01-08 07:28 出处:网络
I have DataGrid and I have a hyperlink field but I want to send some information with this link by using URLwriting. I have tried this, but it\'s not working. So, please help me out.

I have DataGrid and I have a hyperlink field but I want to send some information with this link by using URLwriting. I have tried this, but it's not working. So, please help me out.

~/Logout.aspx?ID="row.Cells(1).Text"

I want to send the value of data grid's column but I am getting "row.Cells.Text" instead of receiving the value of this. So I want to know how I would be able to get the value of this c开发者_如何学编程olumn.


Try:

"~/Logout.aspx?ID=" & row.Cells(1).Value

See if that gets you what you want.

A little more clarification would be nice if this isn't what you are looking for.

0

精彩评论

暂无评论...
验证码 换一张
取 消