E
Ed Richter
I'm trying to pass two parameters from one ASP page to the next by clicking on a link. I'm able to pass one parameter no problem, but am having trouble getting second to work. I believe the problem is in the format of the line. I'm entering as listed below:
<A HREF="go_to_page.asp?first_parm=<% = rsObj("first_parm") %>?second_parm=<% = rsObj("second_parm") %>"><% = rsObj("first_parm") %></td>
If I just type, it works fine;
<A HREF="go_to_page.asp?first_parm=<% = rsObj("first_parm") %>"><% = rsObj("first_parm") %></td>
As soon as I add second paramter, it stops working. What am I typing wrong??
Any ideas??
<A HREF="go_to_page.asp?first_parm=<% = rsObj("first_parm") %>?second_parm=<% = rsObj("second_parm") %>"><% = rsObj("first_parm") %></td>
If I just type, it works fine;
<A HREF="go_to_page.asp?first_parm=<% = rsObj("first_parm") %>"><% = rsObj("first_parm") %></td>
As soon as I add second paramter, it stops working. What am I typing wrong??
Any ideas??