The ConnectionString property has not been initialized. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.InvalidOperationException: The ConnectionString property has not been initialized.Source Error: The source code that generated this unhandled exception can only be shown when compiled in debug mode. To enable this, please follow one of the below steps, then request the URL:1. Add a "Debug=true" directive at the top of the file that generated the error. Example:  <%@ Page Language="C#" Debug="true" %>or:2) Add the following section to the configuration file of your application:<configuration>
   <system.web>
       <compilation debug="true"/>
   </system.web>
</configuration>Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode.Important: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario. 没一个网页编译时都出现此问题.
我按照:
1. Add a "Debug=true" directive at the top of the file that generated the error. Example:  <%@ Page Language="C#" Debug="true" %>进行解决后.出现如下错误.
Server Error in '/Stores' Application. 
--------------------------------------------------------------------------------第 1 行: '=' 附近有语法错误。 
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Data.SqlClient.SqlException: 第 1 行: '=' 附近有语法错误。Source Error: Line 16:     SqlCommand myCommand=new SqlCommand(sqlstr,myConnection);
Line 17:     myConnection.Open();
Line 18:     SqlDataReader dr=myCommand.ExecuteReader();
Line 19:     nProductTypeID.Text="";
Line 20:     while(dr.Read())
 Source File: C:\Inetpub\wwwroot\Stores\RegProduct.aspx    Line: 18 Stack Trace: [SqlException: 第 1 行: '=' 附近有语法错误。]
   System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream) +723
   System.Data.SqlClient.SqlCommand.ExecuteReader() +42
   ASP.RegProduct_aspx.IN_Click(Object sender, EventArgs e) in C:\Inetpub\wwwroot\Stores\RegProduct.aspx:18
   System.Web.UI.WebControls.Button.OnClick(EventArgs e) +108
   System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +57
   System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +18
   System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +33
   System.Web.UI.Page.ProcessRequestMain() +1277 真实不知道什么地方错了.
在Web.cofig对ConnectionString初始化了.