Im trying to get the Web Site Administration Tool (WSAT) to run with asp.net 2005 express edition and sql 2005 express edition. The problem Im running into however is that I get the error message "An error was encountered. Please return to the previous page and try again." when I start up WSAT and thats all the information that it gives me.
I followed the tutorial at http://www.asp.net/guidedtour2/s27.aspx. I ran aspnet_regsql.exe and completed that installation, but afterwards it says "After running the wizard you will then need to change the Provider via the WSAT. You can also implement the Provider API for a custom data storage solution and use the WSAT to manage settings." of course I cant do this because WSAT doenst work.
I also tried editing the machine.config to say:
(aspnetdb is the database that aspnet_regsql.exe created)
instead of:
But that didnt work at all. btw, I dont have IIS. Does anybody know the solution for this?
Thanks,
decrypt
I followed the tutorial at http://www.asp.net/guidedtour2/s27.aspx. I ran aspnet_regsql.exe and completed that installation, but afterwards it says "After running the wizard you will then need to change the Provider via the WSAT. You can also implement the Provider API for a custom data storage solution and use the WSAT to manage settings." of course I cant do this because WSAT doenst work.
I also tried editing the machine.config to say:
Code:
<connectionStrings>
<add name="LocalSqlServer" connectionString="data source=.\SQLEXPRESS;[b]Initial Catalog=aspnetdb;[/b]Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient"/>
</connectionStrings>
(aspnetdb is the database that aspnet_regsql.exe created)
instead of:
Code:
<connectionStrings>
<add name="LocalSqlServer" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient"/>
</connectionStrings>
But that didnt work at all. btw, I dont have IIS. Does anybody know the solution for this?
Thanks,
decrypt