I have a page that loads data into a grid. When the user selects one of the rows of the grid, I need to send them to another page and open that second page based upon the ID selected in the first page.
Currently, I'm posting back to the first page, building the grid, getting the ID from the row, stuffing it in session, then response.redirecting to the second page.
I'd like to avoid reloading the first page just to get the ID value, but I don't want to put the ID in a querystring.
I don't want to use server.transfer because I want the URL to switch to the second page.
Any suggestions would be appreciated!