what's wrong with this code?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm trying to pass the querystring in the design view as shown below, but it
doesn't work.. any suggestion?
<A
href="javascript:popUp('location_details.aspx?LocationID=<%#Request.QueryString["ClientID"] %>','610','440')">[View]</A>

Many thanks in advance.

huzz
 
<A
href="javascript:popUp('location_details.aspx?LocationID=<%#Request.QueryString["ClientID"]
%>','610','440')">[View]</A>

Does this work:?

<A
href="javascript:popUp('location_details.aspx?LocationID=<%=Request.QueryString["ClientID"]
%>','610','440')">[View]</A>
 
it worked :) ...

thank you soooooooooooo much.

have a nice day

Mark Rae said:
<A
href="javascript:popUp('location_details.aspx?LocationID=<%#Request.QueryString["ClientID"]
%>','610','440')">[View]</A>

Does this work:?

<A
href="javascript:popUp('location_details.aspx?LocationID=<%=Request.QueryString["ClientID"]
%>','610','440')">[View]</A>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top