5

when I try to access the ASP.NET Configuration page from Visual Studio 2008, I fail . I get an error :

"An error was encountered. Please return to the previous page and try again.".

This is the message I get after clicking on Help : "Tool Has Timed Out . As a security measure, the Web Site Administration Tool times out after a period of inactivity. Changes to machine.config or web.config may also result in the tool needing to be restarted. To continue configuring your web site, restart the tool."

how can I solve this ?

Attilah
  • 17,632
  • 38
  • 139
  • 202

4 Answers4

6

Set the default browser within Visual Studio to internal browser, and attempt to re-launch the tool. This worked for me.

Gbolahan
  • 166
  • 2
  • 2
  • 3
    and here how to change it http://stackoverflow.com/questions/79954/visual-studio-opens-the-default-browser-instead-of-internet-explorer – DavRob60 Jun 17 '11 at 18:18
1

It's likely the is an error in your web.config file - try making sure the xml is valid, all tags are closed that sort of thing.

Mark
  • 61
  • 2
  • I looked and it seems to be OK. – Attilah Jan 18 '10 at 15:16
  • Do you get any more details in the error, something starting with a line saying 'The following message may help in diagnosing the problem:'? – Mark Jan 18 '10 at 16:07
  • Tool Has Timed Out This is the message I get after clicking on Help : "As a security measure, the Web Site Administration Tool times out after a period of inactivity. Changes to machine.config or web.config may also result in the tool needing to be restarted. To continue configuring your web site, restart the tool." – Attilah Jan 18 '10 at 16:26
0

You might want to check the Event log for possibly more information on the actual underlying error

Naeem Sarfraz
  • 7,360
  • 5
  • 37
  • 63
-2

Edit your Web.config file and add this:

 <system.web>
   <authorization>
     <deny users="?"/>
   </authorization>
</system.web>
bummi
  • 27,123
  • 14
  • 62
  • 101