Here is the simple code, why is html portion displays, but ASP portion doesnot, anybody can suggest anything?
Thanks
<%@ Page Language="VB" %>
<script runat="server">
Sub Page_Load(sender as Object, e as EventArgs)
Response.Write("This is from Page Load event handler"
End Sub
</script>
<html>
<head>
<title>Test Page</title>
</head>
<body>
<p>
This is from Html Portion .
</p>
</body>
</html>
Thanks
<%@ Page Language="VB" %>
<script runat="server">
Sub Page_Load(sender as Object, e as EventArgs)
Response.Write("This is from Page Load event handler"
End Sub
</script>
<html>
<head>
<title>Test Page</title>
</head>
<body>
<p>
This is from Html Portion .
</p>
</body>
</html>