Hi All
I have a problem and I hope someone can please help me.
I have an HRef in a cell in a Datagrid (HRef built in OnItemDataBound
Event) on page 1 (retrieved from a database table).
I want the user to be able to navigate to another page (page 2) where
I wish to retrieve and display in a Datagrid data from a table based
upon the contents of Cell0 and Cell1 from page 1. How do I pass these
values as the Datagrid SelectedIndexChanged event will not fire to set
something like a Session variable.
Any help or advice offered will be most gratefully received.
Iain
----------------------------------------------------------------------------
ie
On Page 1
Cell0 Cell1 HRef
AAA BBB <a href='Page2.aspx'>" + e.Item.Cells[0].Text + "</a>"
On Page 2 I need to use the values from Cell0 (AAA) and Cell1 (BBB) to
build a dynamic SQL string to retrieve the data to display in a new
datagrid.
|