I run the asp.net configuration tool. The following error appears in the browser: The tool has timed out. As a security measure, the Web site administration tool stops working after it expires. Changes to the machine.config or web.config files may necessitate a reboot. Restart the tool to continue setting up the website.

This is what my web.config file contains. How to fix this problem? Google does not find any solution.

<?xml version="1.0"?> <!-- For more information on how to configure your ASP.NET application, please visit http://go.microsoft.com/fwlink/?LinkId=169433 --> <configuration> <system.web> <compilation debug="true" targetFramework="4.0" /> <membership userIsOnlineTimeWindow="180" defaultProvider="WebChatMembershipProvider"> <providers> <add applicationName="WebChat" name="WebChatMembershipProvider" connectionStringName="WebChatDB" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="true" requiresUniqueEmail="false" passwordFormat="Hashed" ></add> </providers> </membership> <customErrors mode="Off"/> <httpRuntime appRequestQueueLimit="100" executionTimeout="60000" /> </system.web> <connectionStrings> <add name="WebChatDB" connectionString="Data Source=ANTONLAPTOP\SQLEXPRESS;Initial Catalog=WebChat;Integrated Security=True" providerName="System.Data.SqlClient"></add> <add key="DBConnection" value="server=LocalHost;uid=sa;pwd=;database=WebChat;Connect Timeout=200; pooling='true'; Max Pool Size=200"/> </connectionStrings> </configuration> 

    1 answer 1

    Place your project on ASP.NET in a folder that is as close as possible to the root of the disk , and does not contain Cyrillic characters, and it is generally better to consist only of Latin letters.

    Example:

     C:\ASPNET\MySite