I am working on a project that somebody else wrote, and he uses a request variable multiple times in a form. Is there a way to force a request variable to a certain value
for example:
if request("PorR") = "Purchase" then
if request("LoanAmount") = "" then
request("LoanAmount") = "0"
end if
If not, I have to re-do a lot of code replacement… Bummer!
Can you just store that request parameter in another variable and then use that? You shouldn’t have any trouble changing the value then.