Ask a Question related to ASP, Design and Development.
-
David #1
Passing multiple values accross a hyperlink ?
Hi,
I have a link as follows:
<A HREF=""Tracker.asp?MovementID=" & RS("MovementID") & " PONumber=" &
RS("PONumber") & """>" & RS("MovementID") & "</A>
I am trying to pass: MovementID & PONumber.
On linking to Tracker.asp,
MovementID = 2257 PONumber=21071045
PONumber = Empty
I am just testing this with Request.querystring.
What have I done wrong, how can I separate these values ?
Thanks
David
David Guest
-
Passing multiple session values from cold fusion into aflash movie
Hello all, I know that to pass multiple variables into a flash movie you could use the embed tag like this(with the & between each variable): ... -
pass info accross multiple domains - is it possible
Hi I'm trying to pass some information accross multiple domains (there's a twist to this particular situation that makes me wonder if this is... -
#6374 [Csd]: include_path in .htaccess accross multiple vhosts
ID: 6374 Updated by: sniper@php.net Reported By: jesper at jdn dot dk Status: Closed Bug Type: ... -
Passing a variable in a hyperlink???
I need to create an email with a hyperlink to go to one person and when they click it, it will take them to one specific page and load the right... -
Passing multiple values using Response.Redirect
hie there, i want to be able to pass multiple parameters to another page. currently, i am able to do so, but somehow i feel it is not the correct... -
Ray at #2
Re: Passing multiple values accross a hyperlink ?
The items need to be separated with a & in the URL, like so:
<A HREF=""Tracker.asp?MovementID=" & RS("MovementID") & "&PONumber=" &
RS("PONumber") & """>" & RS("MovementID") & "</A>
Ray at work
"David" <david@scene-double.co.uk> wrote in message
news:c178e3e8.0309160552.3735c97e@posting.google.c om...> Hi,
>
> I have a link as follows:
>
> <A HREF=""Tracker.asp?MovementID=" & RS("MovementID") & " PONumber=" &
> RS("PONumber") & """>" & RS("MovementID") & "</A>
>
> I am trying to pass: MovementID & PONumber.
> On linking to Tracker.asp,
>
> MovementID = 2257 PONumber=21071045
> PONumber = Empty
>
> I am just testing this with Request.querystring.
>
> What have I done wrong, how can I separate these values ?
>
>
> Thanks
>
> David
Ray at Guest
-
David #3
Re: Passing multiple values accross a hyperlink ?
hi,
where are the ASP open and close tags in your A Href, RS("MovementID") etc.
are not enclosed in ASP tags therefore are not ASP code. Try this:
<A
HREF="Tracker.asp?MovementID=<%=RS("MovementID")%> &PONumber=<%=RS("PONumber"
)"><%= RS("MovementID")%></A>
Hope this helps
David
"David" <david@scene-double.co.uk> wrote in message
news:c178e3e8.0309160552.3735c97e@posting.google.c om...> Hi,
>
> I have a link as follows:
>
> <A HREF=""Tracker.asp?MovementID=" & RS("MovementID") & " PONumber=" &
> RS("PONumber") & """>" & RS("MovementID") & "</A>
>
> I am trying to pass: MovementID & PONumber.
> On linking to Tracker.asp,
>
> MovementID = 2257 PONumber=21071045
> PONumber = Empty
>
> I am just testing this with Request.querystring.
>
> What have I done wrong, how can I separate these values ?
>
>
> Thanks
>
> David
David Guest
-
David Gordon #4
Re: Passing multiple values accross a hyperlink ?
Thanks Ray,
I did try to send a thanks yesterday, but for some reason I could not
post....so Thanks very much for your prompt support....Excellent code.
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
David Gordon Guest



Reply With Quote

