I’m working with a site originally coded in classic ASP and slowly being migrated to ASP.NET. The search functionality on the default.aspx page needs to pass values to the itemsearch.asp page. Specifically, I need to pass the ddlCat.selectedvalue and txtSearch.text values to the itemsearch.asp page so that results can be rendered.
What changes must I make to the itemsearch.asp page to accomodate this incoming set of values? Likewise, what must be done in the default.aspx.cs to ensure these values are passed and that the itemsearch.asp page is called correctly?
Thanks!!
Exactly the same way: post form fields. Just match up the expected field names.