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