Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Characters missing in URL..?

Status
Not open for further replies.

kenjoswe

Technical User
Sep 19, 2000
327
SE
Hi all,

I have a URL that is used as a querysting:
Response.Write &quot;<TD align=right><a href='&quot; & URL & rs.Fields(intColumn) & &quot;</a></TD>&quot;

The problem is that not all characters is displayed from the memvar URL.

Is there a limit on how many characters you can have in a URL?

/Kent J.
 

Is this what you're trying to do?

Response.Write &quot;<TD align=right><a href='&quot; & url & &quot;'>&quot; & rs.Fields(&quot;intColumn&quot;) & &quot;</a></TD>&quot;

Rick
 
I don't know of a limit on the number of characters in a URL, but you might try using the ServerVariables to do the same thing.

request.servervariables(&quot;URL&quot;)
or
Request.servervariables(&quot;script_name&quot;)

These might be able to hold a larger value.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top