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?




Reply With Quote