ASP Code:
<html>
<body>
<%
Response.Write("Hello Me")
%>
</body>
</html>
ASP Tags:
These special tags <% and %> will always encapsulate your ASP code. Some things about the ASP tag that sets it apart from normal HTML tags:
An opening ASP tag is <% while an HTML tag normally looks like <tagname>
A closing ASP tag looks like %> while an HTML tag normally looks like </tagname>
ASP code can occurr anywhere, even within an HTML tag opening tag like this:
ASP Code:
No comments:
Post a Comment