The timeout period elapsed prior to completion of the operation or the server is not responding ???
-
When I run my program written by C# ASP.NET 2.0 first time then my logo disappear and then there is error is: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding , I have to click back button and re-login then the logo appear and the error disappear In conclusion the error happen when I run my program in first time, How can I do to fix these bugs, Thanks alot and best regard !
-
When I run my program written by C# ASP.NET 2.0 first time then my logo disappear and then there is error is: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding , I have to click back button and re-login then the logo appear and the error disappear In conclusion the error happen when I run my program in first time, How can I do to fix these bugs, Thanks alot and best regard !
That means your program is taking too much time to execute the page. Anyway after deployment, when we call the page it will compile then serve the page. Try using precompiled website before deploying.
Regards, Sylvester G sylvester_g_m@yahoo.com
-
That means your program is taking too much time to execute the page. Anyway after deployment, when we call the page it will compile then serve the page. Try using precompiled website before deploying.
Regards, Sylvester G sylvester_g_m@yahoo.com
it seems to me that ur application taking more than 90sec...(In our .net environment no application is allowed to exicute more than 90 sec) if we want to allowe our application to be exicuted more than that period let's do this ----in the machine.config file there is an element called httpRuntime with in that there is one attribute executionTimeout=90 there u can prolong (i.e make it like 120 0r...)such that server won't send this kind of error provided ur appliation must exicuted before the mentioned time
-
it seems to me that ur application taking more than 90sec...(In our .net environment no application is allowed to exicute more than 90 sec) if we want to allowe our application to be exicuted more than that period let's do this ----in the machine.config file there is an element called httpRuntime with in that there is one attribute executionTimeout=90 there u can prolong (i.e make it like 120 0r...)such that server won't send this kind of error provided ur appliation must exicuted before the mentioned time
I can't find machine.config, there is only web.config file, in this file I also can't find element called httpRuntime??? Can i solve this problem if I increase the Connect Timeout more (i.e like 60 or 90) Thanks and best regart ! ;)
-
I can't find machine.config, there is only web.config file, in this file I also can't find element called httpRuntime??? Can i solve this problem if I increase the Connect Timeout more (i.e like 60 or 90) Thanks and best regart ! ;)
Here u can go to find the machine.config file--C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\CONFIG\Machine...observe carefullly u will find the element which is mentioned there...! httpRuntime executionTimeout="90" maxRequestLength="4096" useFullyQualifiedRedirectUrl="false" minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="100" regards---yuva
-
Here u can go to find the machine.config file--C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\CONFIG\Machine...observe carefullly u will find the element which is mentioned there...! httpRuntime executionTimeout="90" maxRequestLength="4096" useFullyQualifiedRedirectUrl="false" minFreeThreads="8" minLocalRequestFreeThreads="4" appRequestQueueLimit="100" regards---yuva
- I am Using VS 2005 so that I can't found path: C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\CONFIG\Machine.config, I only found path: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG\Machine.config - In this file I am only found
so that it doesn't have properties as you said - How can I do now, please help me Thanks and best regard ! :-D
-
- I am Using VS 2005 so that I can't found path: C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\CONFIG\Machine.config, I only found path: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG\Machine.config - In this file I am only found
so that it doesn't have properties as you said - How can I do now, please help me Thanks and best regard ! :-D
It is allowed to include the elements manually with in the machine.config file..do it after /system.Web u write httpRuntime executionTimeout="...." / this may help u out..!