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

Newbie to ASP

Status
Not open for further replies.

dpgrieve

MIS
Joined
Jul 25, 2004
Messages
4
Location
US
I am having a problem getting an ASP response page, that is using VBSCRIPT, to work properly. I am new to asp web pages and it appears the problem might be with the <% and %> tags. What do these tags do?

Thanks [dazed]
 
The <% and %> tags specify that you are entering and exiting script code.

ASP is a combination of HTML and script code.

For example:

Code:
<%
Dim YourName
YourMyName = "dpgrieve"
%>
<html>
<body>
<h1>Hello<br>
<% response.write YourName %>
</h1>
</body>
</html>

I hope you find this post helpful. Please let me know if it was.

Regards,

Mark
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top