Hi,
Would someone take a look at my code and see what I'm missing. I'm trying to redirect from one page to another and take along the value of a Session object to search through a database.
Response.Redirect "poPARTsrch.asp?search=" & Session("ponum")
I've also tried it this way -
Response.Redirect "poPARTsrch.asp?search=Session(""ponum"")"
No luck with either. I've used a lot of Response.Write's to check values along the way and "search" always ends up empty. Session("ponum") always has a number but I'm coming to the search results page from two different pages and I want the results page to have the same input "search". Can I do this?
Thanks,
Riley
Would someone take a look at my code and see what I'm missing. I'm trying to redirect from one page to another and take along the value of a Session object to search through a database.
Response.Redirect "poPARTsrch.asp?search=" & Session("ponum")
I've also tried it this way -
Response.Redirect "poPARTsrch.asp?search=Session(""ponum"")"
No luck with either. I've used a lot of Response.Write's to check values along the way and "search" always ends up empty. Session("ponum") always has a number but I'm coming to the search results page from two different pages and I want the results page to have the same input "search". Can I do this?
Thanks,
Riley