Nothing happens when i press the ASP.NET Configuration button in Visual Studio 2010
I recently installed Visual Studio 2010 and it works fine except one thing: When I press the ASP.NET Configur开发者_高级运维ation button above the solution explorer, nothing happens.
I'm running Windows 7 32-bit and have setup a server using aspnet_regsql.exe, which is correctly configured in web.config with LocalSqlServer connectionstring and in the membership and role provider.
I hope you can help. Thanks in advance.
Most likely this is because the path to your application contains non-standard characters (such as a space). Open your browser and point it to this URL to get the asp.net configuration page.
http://localhost:<port>/asp.netwebadminfiles/default.aspx?applicationPhysicalPath=<path to webapp>&applicationUrl=<application url>
Remember to escape non-standard URL characters (ie. a space is %20
).
The "application url" by default is /
精彩评论