parallon Report post Posted September 11, 2008 Hello all. I am trying to pass 3 variables within the URL but am having trouble. Here is what I want: mysite.com/rpt3.asp&Package=P1&StartDate=1/1/2008&EndDate=12/31/2008 Here is the code I tried: link='http://mysite.com/rpt_3a.asp?Package=" & LaborArray(x,1) & "&StartDate=" & vStart & "&EndDate=" & vEnd &"' ... but when I view the source of the page, I get the following: mysite.com/rpt_3a.asp?Package=P1&StartDate=&EndDate=' Thanks, Parallon Share this post Link to post Share on other sites
parallon Report post Posted September 11, 2008 Never mind. I figured it out. Didn't know they had to be URLElcoded. Parallon Share this post Link to post Share on other sites
Arindam Report post Posted September 12, 2008 hi, Could you please follow this? strURL=server.URLEncode("rpt_3a.asp?Package=" & LaborArray(x,1) & "&StartDate=" & vStart & "&EndDate=" & vEnd) linkParam="link='" & strURL & "'" Share this post Link to post Share on other sites