WroxUnited Install Problems with SQL2005
I changed the connection strings to install the WroxUnited asp site and here is the message I get when I run the application by pressing F5:
Server Error in '/WroxUnited' Application.
--------------------------------------------------------------------------------
Unable to find the requested .Net Framework Data Provider. It may not be installed.
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.ArgumentException: Unable to find the requested .Net Framework Data Provider. It may not be installed.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[ArgumentException: Unable to find the requested .Net Framework Data Provider. It may not be installed.]
System.Data.Common.DbProviderFactories.GetFa ctory(String providerInvariantName) +1372023
System.Web.UI.WebControls.SqlDataSource.GetD bProviderFactory() +63
System.Web.UI.WebControls.SqlDataSource.GetD bProviderFactorySecure() +19
System.Web.UI.WebControls.SqlDataSourceView. ExecuteSelect(DataSourceSelectArguments arguments) +120
System.Web.UI.WebControls.Repeater.GetData() +50
System.Web.UI.WebControls.Repeater.CreateCon trolHierarchy(Boolean useDataSource) +232
System.Web.UI.WebControls.Repeater.OnDataBin ding(EventArgs e) +53
System.Web.UI.WebControls.Repeater.DataBind( ) +72
System.Web.UI.WebControls.Repeater.EnsureDat aBound() +55
System.Web.UI.WebControls.Repeater.OnPreRend er(EventArgs e) +12
System.Web.UI.Control.PreRenderRecursiveInte rnal() +77
System.Web.UI.Control.PreRenderRecursiveInte rnal() +161
System.Web.UI.Control.PreRenderRecursiveInte rnal() +161
System.Web.UI.Control.PreRenderRecursiveInte rnal() +161
System.Web.UI.Control.PreRenderRecursiveInte rnal() +161
System.Web.UI.Control.PreRenderRecursiveInte rnal() +161
System.Web.UI.Page.ProcessRequestMain(Boolea n includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1360
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.210
is there someone who can help. here are my connection strings that are located in the web.config:
<connectionStrings>
<add name="WroxUnited"
connectionString="Data Source=localhost;INITIAL CATALOG=WROXUNITED;Integrated Security=true"
providerName ="System.Data.sqlClient"/>
<remove name="LocalSqlServer"/>
<add name="LocalSqlServer"
connectionString="Data Source=Localhost;INITIAL CATALOG=ASPNETDB;Integrated Security=true"
providerName ="System.Data.sqlClient"/>
</connectionStrings>
Owen
|