我的电脑配置正确了也不能显示动态页面的内容,不能运行动态页面。但是运行 html等静态页面很正常。在互联网上可以正常浏览任何网站,包括各种动态网站。
我的浏览器是IE 7.0就连写一个显示"Hello world!"的aspx文件都不能显示!
<%@page language="vb"%>
<script language="vb" runat="server">
Function showhello()
dim inti
dim strtemp
strtemp="<font color=red>hello world.<br></font>"
Return strtemp
End Function
</script><html>
<body>
<%=showhello%>
</body>
</html>打开后显示
Server Application Error
The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail information. Please contact the server administrator for assistance.
请问这是怎么回事?