Hi I'm totally new to ASP and was
1) wondering if someone could point me to a good tutorial. I've found a couple but they seem shorter than other language tutorials.
2) How do you link stuff using ASP?
Quote:
<a href="http://www.unco.edu/dss/testlink.asp?name=
<%
response.write(yourname)
%>
> Work? </a>
|
doesn't work, and:
Quote:
<%
response.write("<a href="http://www.unco.edu/dss/testlink.asp?name=" & yourname & ">Did this work?</a>"")
%>
|
Doesn't work either. I tried replacing the inner " marks with " but that didn't work either.