How would I, in an ASP script, take a URL that I have stored as a string in a variable and use that URL to make an image hyperlinked? I understand how to capture the URL and store it into a variable in the script, but how do i use that URL in a hyperlink later on? Thanks alot in advance
If you have your hylerlink in the variable strUrl it woudl work like this : <a href="<% = strUrl %>" ><img src="someimage.gif" /></a> Is that what you're after ?