Thanks for the direction.
Now, I have another related question, and here's my codes:
<A href="<%=some file%>" target="_blank"
onClick="window.open ('<%=some file%>','','width=950,height=600,scrollbars=yes,me nubar=yes');return false;">
Click Here</A>
Here, when users click the link, it will open a new window (with the pre-determined features and sizes, etc.).
But now, I need to use an ASP IF statement to check some condition so that if the condition is FALSE, I will still show the words "Click Here" without the underline and also ignoring the onClick event. How do I insert this IF statement in this <A></A> tag?
Basically, I am trying to wrap an ASP <%IF...Then %> statement around this following line:
onclick="open('<%=some file%>','','');return false;
But I have <% %> already inside this onClick event?!