Then you should be referring some DW related book that helps you code ASP pages.
Javascript - client-side programming language used in ASP pages.
VBScript - Server-side Programming language used in ASP pages.
Response.write is equivalant to
<%= %>
Code:
Dim strVar
strVar="Show me on the page."
Response.Write strVar
' is same as the code that follows this.
<%=strVar%>
<% ...VBScript code... %> is called asp tag that can contain any VBScript code into it.
Hope that explains.
Cheers!
_________________________
- Vijay G
Strive for Perfection