I want to pass a variable from one asp to another which then checks the value of the passed variable. The variable is a radio button which when clicked sets the value as 1, 2, 3 or 4.
Here is the line that does the send:
CareEntriesView.asp?View=all&entryType=&listingfunctions
"listingfunctions" should contain a "1" or "2" or "3" or "4".
In the 2nd asp I do a entryTypeValue = Request.QueryString("listingfunctions"), but when I Response.Write that variable, it is empty. I do Dim entryTypeValue.
What am I doing wrong?
Thanks.
Here is the line that does the send:
CareEntriesView.asp?View=all&entryType=&listingfunctions
"listingfunctions" should contain a "1" or "2" or "3" or "4".
In the 2nd asp I do a entryTypeValue = Request.QueryString("listingfunctions"), but when I Response.Write that variable, it is empty. I do Dim entryTypeValue.
What am I doing wrong?
Thanks.