I have been using ASPRunnerPro for a while now and now I have come up against a hard issue. Maybe it is simple and I am just overlooking.
I want to be able to add a variable to the Hyperlink when clicked that has the Client ID Number in it. I am using the Visual Editor and selecting the Hyperlink settings on the text box. From there I am putting in the URL: my_shipment_view.asp?session=test@shipwatchers.com&client_id_number=<% = Session("client_id_number") %>&ship_trk_num=
I also have a ASP snippet of:
if Request.QueryString("client_id_number")<>"" then
Session("client_id_number")=Request.QueryString("client_id_number")
end if
I get an script error. I am not sure of the right URL variable or what ASPrunnerPro wants. I usually put the ASP code normally as follows and it works so I know I am not telling ASPRunnerPro the right way to get the variable for the client id number.
my_shipment_view.asp?session=test@shipwatchers.com&client_id_number=<% = Request.QueryString("client_id_number") %>&ship_trk_num=
Any help you could give on this as I have searched and can not seem to find the answer. Thanks!