Yesterday, I downloaded the ASP.Net Framework 4.0 Standalone and installed it on my computer which has a Windows XP Pro Operating system. Today, when I tried to run a simple program like Hello.aspx (below) under Inetpub/wwwroot it doesn’t execute. Should I uninstall the 4.0 Standalone or is there a way to make this simple program work with 4.0.
Please help.
Thanks,
Robin
*****************************************************
<%@ Page Language="VB" %>
<html>
<body>
<script runat="server">
Dim strHelloString As String
Sub Page_Load(obj as object, e as eventargs)
DisplayHelloWorld()
Test()
End Sub
Function DisplayHelloWorld()
strHelloString = "Hello World"
Response.Write ("Hello World" & "<P>")
Response.Write(strHelloString & "<P>")
End Function
Function Test()
End Function
</script>
<%= "Hello" %>
</body>
</html>