B
Buddy Robbins
I am trying to implement a master/detail type page in ASP.Net (VB) using 2
datagrids.
I would like to make it so when you click on a row in the master, the
postback happens, the dataview for the detail is filtered on the master row
selected.
In the master's ItemDataBound event, I add an onclick event calling the
GetPostBackClientEvent
e.Item.Attributes("onclick") = Page.GetPostBackClientEvent(e.Item,
e.Item.Cells(1).Text)
but I can't figure out how to get my GUID from client back to the server to
set the dataview filter. In the code, the e.item.Cells(1).text is the Guid,
but it's getting lost.
Can anyone give me a good suggestion?
Thanks in advance,
-Buddy Robbins
datagrids.
I would like to make it so when you click on a row in the master, the
postback happens, the dataview for the detail is filtered on the master row
selected.
In the master's ItemDataBound event, I add an onclick event calling the
GetPostBackClientEvent
e.Item.Attributes("onclick") = Page.GetPostBackClientEvent(e.Item,
e.Item.Cells(1).Text)
but I can't figure out how to get my GUID from client back to the server to
set the dataview filter. In the code, the e.item.Cells(1).text is the Guid,
but it's getting lost.
Can anyone give me a good suggestion?
Thanks in advance,
-Buddy Robbins