Hi
I have what i think must be a classic problem in .NET development but so far cannot find any solutions anywhere.
Basically I have the following setup :
<sitemapnode>Searchpage.aspx
<sitemapnode>DetailsPage.aspx</sitemapnode>
</sitemapnode>
My Search page has a number of filters which allow the user to search for particular items. There are a large number of filters on this page including some droplists which cause an auto-postback in order to populate "sub droplists". The form in (searchpage.aspx) uses POSTs to send data back to itself and displays the results using an <asp:repeater /> control. Part of the results is a hyperlink to Details.aspx which will pass in an ID via querystring so that the full details can be displayed.
My problem is this, once I have navigated to Details.aspx (and user has updated/saved details) how can I allow the ...
Go to the complete details ...