page cannot be displayed - at sql insertion
-
When I run a script that reads from a file and insert into a SqlServer I get "The page cannot be displyed" after approx. 5 minutes. It is 20.000 rows to insert and the script continues to run in the background so the script works and all the rows are inserted. But it's very annoying to get that "The page cannot be displyed"-message 'cause it seems like it would fail. I used Windows 2003 server with IE6, also tried it on Win XP. Any ideas? /larbo
-
When I run a script that reads from a file and insert into a SqlServer I get "The page cannot be displyed" after approx. 5 minutes. It is 20.000 rows to insert and the script continues to run in the background so the script works and all the rows are inserted. But it's very annoying to get that "The page cannot be displyed"-message 'cause it seems like it would fail. I used Windows 2003 server with IE6, also tried it on Win XP. Any ideas? /larbo
Your request is timing out from your ASP.NET application. You need to specify a higher timeout. Take a look at the httpRuntime[^] element for your Web.config. In particular, pay close attention to the executionTimeout. ~Javier Lozano (blog)