|
分類:[VB.NET/VB2005 以降]
はじめまして、宜しくお願い致します。 たかと申します。
開発環境 DB : Microsoft SQL Server 2005(下記のCDに付随してきたものを仕様) 仕様言語: ASP.NET(2.0? VB) : Microsoft Visual Web Developer 2008 Express Edition で作成して、 レンタルサーバー DB : Microsoft SQL Server 2005 .NET : ASP.NET(2.0 VB)対応 へ移行して、運用する予定です。
本とかWebを見ながら作成して、何とかPGをしてきたのですが 本番環境へ移行で web.configの設定がわからず参っています。
エラーばかりでるので下記のように削除していき トップ画面が出るようになりました。⇒トップ画面には、DB関連の項目はありません トップ画面の次の画面へ移行時に、エラーになってしまいます。
----------------------------web.config------------------------ST---- 01 02 <?xml version="1.0" encoding="utf-8"?> 03 <configuration> 04 <appSettings/> 05 06 <connectionStrings/> 07 <system.web> 08 <compilation debug="false" strict="false" explicit="true"> 09 10 </compilation> 11 <pages> 12 <namespaces> 13 <clear /> 14 <add namespace="System" /> 15 <add namespace="System.Collections" /> 16 <add namespace="System.Collections.Generic" /> 17 <add namespace="System.Collections.Specialized" /> 18 <add namespace="System.Configuration" /> 19 <add namespace="System.Text" /> 20 <add namespace="System.Text.RegularExpressions" /> 21 <add namespace="System.Web" /> 22 <add namespace="System.Web.Caching" /> 23 <add namespace="System.Web.SessionState" /> 24 <add namespace="System.Web.Security" /> 25 <add namespace="System.Web.Profile" /> 26 <add namespace="System.Web.UI" /> 27 <add namespace="System.Web.UI.WebControls" /> 28 <add namespace="System.Web.UI.WebControls.WebParts" /> 29 <add namespace="System.Web.UI.HtmlControls" /> 30 </namespaces> 31 32 </pages> 33 <authentication mode="Windows" /> 34 35 </system.web> 36 37</configuration> 38 ----------------------------web.config------------------------END----
06の所を下記のように変更したのですが <connectionStrings> <add name="ConnectionString" connectionString="database=db****;uid=****;pwd=*****" providerName="System.Data.SqlClient"/> </connectionStrings>
して実行したのですが 下記のエラーが出て八方塞がりになってしまいました。 34行目に <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm"> を追加すると、トップ画面まで行く前にエラーになってしまいます。
1月9日完成といわれたのですが 現状の状態です。 恐れ入りますが、どこが悪いのかご指摘をお願いします。(できれば、どのように修正すればいいか) わがままいってすいませんが宜しくお願い致します。
----------------------------Server Error ------------------------St----
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>
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->
<configuration> <system.web> <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/> </system.web> </configuration>
----------------------------Server Error ------------------------END----
|