Quote:
Originally posted by vbgladiator
Hi,
I have a html page as follows
<html>
<body>
<a href = "main.aspx"> Click Here for a ASP.NET Demo</a>
</body>
</html>
I also have a ASP page as follows
<html>
<body bgcolor="yellow">
<center>
<h2>Hello</h2>
<p><%Response.Write(now())%></p>
</center>
</body>
</html>
When I open the html page in IE and click on the link, the ASP page appears but doesn't disply the stuff inside % signs.
Does anyone know why?
You're missing a header line at the top that tells it that there's ASP in the page.... <%@script="vbscript" runat="server"%> I think is how it goes....