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 Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Writing HTML and JavaScript with ASP

Status
Not open for further replies.

JavaDude32

Programmer
Aug 25, 2001
180
US
I have been having errors in writing custom html based on user selections due to the ASP <% %> content not being read correctly. I can't seem to mangle the quotes right, so how can I fix this?

<img src='<%=Application(&quot;WebAppVirtualRoot&quot;)%>/Share/GWMProcessing.gif' border=&quot;2&quot;>

objId += ' <param name=&quot;FileName&quot; value=&quot;<%=MapFileName%>&quot;>';

etc....

Any help would be apprechiated.
 
try
<img src=&quot;<%=Application('WebAppVirtualRoot')%>/Share/GWMProcessing.gif&quot; border=&quot;2&quot;>

or

<img src=&quot;<%Application('WebAppVirtualRoot')%>/Share/GWMProcessing.gif&quot; border=&quot;2&quot;>

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top