出现的情况是:
1、在本地调试,使用本地的数据库,没有问题
________________________________________________________
2、在本地调试,使用局域网内其他数据库服务器,没有问题
________________________________________________________3、在本地调试,使用远程服务器的数据库,提示错误
行 2:  <configuration>
行 3:      <appSettings>
行 4:      <add key="strConnection" value="Server=214.14.25.25;User id=test;Pwd=123456;Database=test;"/>
行 5:      </appSettings>
行 6:    <system.web>
________________________________________________________4、在服务器上调试,使用服务器数据库(同一台服务器),提示错误
Server Error in '/' Application.
--------------------------------------------------------------------------------Runtime Error 
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File --><configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>
 
(服务器上web.config设置customErrors是Off)请高手指教,急急急!!!!