Link to home
Start Free TrialLog in
Avatar of Aleks
AleksFlag for United States of America

asked on

Pass two parameter values

I have the following redirect (Using Dreamweaver). I am passing one parameter but I need to pass 2

      MM_editRedirectUrl = "SPDeleteReceipt.asp?receiptid=" & Request.QueryString("receiptid")

I also need to pass

caseid

value:  Request.QueryString("caseid")

I tried this but I get a syntax error:

MM_editRedirectUrl = "SPDeleteReceipt.asp?receiptid=" & Request.QueryString("receiptid") & caseid=" & Request.QueryString("caseid")
ASKER CERTIFIED SOLUTION
Avatar of Big Monty
Big Monty
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Aleks

ASKER

Seems to work. I got an error on the next page. Ill check what it was and open a separate question if needed. Thanks for the quick response.
Avatar of Aleks

ASKER

:)