N
Northern
What I want to do is to retrive the value from the row
that was selected by uesr. I added the "Select" command
column and linked the select event to one of my method by
setting my DataGrid's attribute:
OnSelectedIndexChanged="OnSelectRow"
Now comes the problem. Even though I can invoke this
OnSelectRow method, I can only do so when I have the
following signiture:
Protected Sub OnSelectRow(ByVal sender As Object, _
ByVal e As System.EventArgs)
This doesn't help me because System.EventArgs doesn't give
me what I need.
Can somebody help me on how to do this? What signiture
should I use in this case?
Thanks
that was selected by uesr. I added the "Select" command
column and linked the select event to one of my method by
setting my DataGrid's attribute:
OnSelectedIndexChanged="OnSelectRow"
Now comes the problem. Even though I can invoke this
OnSelectRow method, I can only do so when I have the
following signiture:
Protected Sub OnSelectRow(ByVal sender As Object, _
ByVal e As System.EventArgs)
This doesn't help me because System.EventArgs doesn't give
me what I need.
Can somebody help me on how to do this? What signiture
should I use in this case?
Thanks