I have a lookup screen with 25 fields. When the user clicks the search button, this information should be passed to the server, and the user should be redirected to a SearchResultList page. What is the best way to get the user selected values (from lookup screen) to the SearchResultList screen?
I can think of two ways:
- Add the fields to session
- Pass the selected values as query string
Is there a different better approach?
Note: In future, the look up screen may be converted into a popup div; still it will be redirecting to a different page for result.
Environment::
Visual Studio 2010
ASP.Net Web Forms
C#