I do alot of software development on the .NET platform. But I have just been involved in a classic ASP project which has poor coding etc....
I am not sure how to make it work but hope someone can help.
Basically in this scenario, there are 2 pages:
Search - This has all the input fields on the form
SearchResults - based on the parameters entered on the previous page, all results are shown on this page using dynamic SQL query being generated on the script (eeek)
A modification is required now where on the SearchResults, a few radio buttons are to be shown. And when one of them is pressed, it will alter (or should do) the current search query.
Now, the search query originally is stored in a session variable. So when the user presses a radio button, how can I redo the search on the page but modified on that variable factor?
Any ideas?!