日期:2014-05-17  浏览次数:20498 次

Asp.net在一个报错问题【愿出100分】
我的一个Asp.Net程序,在本机IIS均运行正常,可我放到万网云托管主机(是一个主机,win2003系统),就报错,.asp,.htm,.php均正常,就是aspx文件一运行就出错。文件夹权限都设设置了。

经过测试:我挑出一个index.aspx,大家帮我分析一下,谢谢了,愿出【100分】答谢。

=================================== 【这样运行不出错!】

<%@ Page Language="C#" ContentType="text/html" ResponseEncoding="gb2312" %>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
        <title>ASPX Test</title>
    </head>
<body>
<script language="C#" runat="server">
void Page_Load(Object sender, EventArgs e)
{
Response.Write("<h1><center>ASPX 程序已经运行</center></h1>");
}
</script>
</body>
</html>


=================================== 【这样运行就出错!】

<%@ Page Language="C#" ContentType="text/html" ResponseEncoding="gb2312" SmartNavigation="True"  AspCompat="true" %>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
        <title>ASPX Test</title>
    </head>
<body>
<script language="C#" runat="server">
void Page_Load(Object sender, EventArgs e)
{
Response.Write("<h1><center>ASPX 程序已经运行</center></h1>");
}
</script>
</body>
</html>

====================================== 【分析原因】





====================================== 【分析原因】
<%@ Page Language="C#" ContentType="text/html" ResponseEncoding="gb2312" SmartNavigation="True"  AspCompat="true" %>

<%@ Page Language="C#" ContentType="text/html" ResponseEncoding="gb2312" %>

===【以上两句中的 SmartNavigation="True"  AspCompat="true" ,加上就出错,不加就不出错,错误如下】


Server Error in '/' Application.
--------------------------------------------

Compilation Error 
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. 

Compiler Error Message: CS0002: Unable to load message string from resources.

Source Error:

[No relevant source lines]
 Source File:    Line: 0 

Show Detailed Compiler Output:
c:\windows\system32\inetsrv> "C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\csc.exe" /t:library /utf8output /R:"C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.ComponentModel.DataAnnotations\v4.0_4.0.0.0__31bf3856ad364e35\System.ComponentModel.DataAnnotations.dll" /R:"C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" /R:"C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" /R:"C:\W