I have a page it opens a popup. I have one updatepanel on both pages. the popup page only has one grid which right now grows upto 1000 rows. and a listview control to show alphabets for filterin.
When user selectes i am using javascripts to update parent page. But first time the page is faster to open but once i try to reopen it it is not opening it stays there and then finally i am gettin the script manager error saying the time out on the server..
So i have to close the page and open it again it works fine.
I think it is the update panel that screws things up but how to fix it?
I also faced the same issue ie during the initial page load everything is fine but if I do any kind of search based on some criteria in the grid I was getting server time out error . For the time being I have removed the update panel and things are fine
(though I have ugly looking page load everytime when you do something ) . But I think the problem is not with the update panel but with the response which is actualy returned from the server when you do some kind of search . I suggest you use tools like Fiddler
or web development helper(works with IE only) to check what you are getting from server as response .
And if you ask me how I am going to handle this scenario then I have decided to use ap.net ajax webservice along with ajax gridview control(CodePlex + DotNetSlacker) .
vadambaibala
Member
192 Points
91 Posts
issue with UpdatePanel???
Nov 18, 2008 09:34 PM|LINK
Hi,
I have a page it opens a popup. I have one updatepanel on both pages. the popup page only has one grid which right now grows upto 1000 rows. and a listview control to show alphabets for filterin.
When user selectes i am using javascripts to update parent page. But first time the page is faster to open but once i try to reopen it it is not opening it stays there and then finally i am gettin the script manager error saying the time out on the server..
So i have to close the page and open it again it works fine.
I think it is the update panel that screws things up but how to fix it?
If anyone came accross this please let me know...
Thanks in advance
Pawan_Mishra
Star
8869 Points
1293 Posts
Re: issue with UpdatePanel???
Nov 19, 2008 03:39 AM|LINK
Hi
I also faced the same issue ie during the initial page load everything is fine but if I do any kind of search based on some criteria in the grid I was getting server time out error . For the time being I have removed the update panel and things are fine (though I have ugly looking page load everytime when you do something ) . But I think the problem is not with the update panel but with the response which is actualy returned from the server when you do some kind of search . I suggest you use tools like Fiddler or web development helper(works with IE only) to check what you are getting from server as response .
And if you ask me how I am going to handle this scenario then I have decided to use ap.net ajax webservice along with ajax gridview control(CodePlex + DotNetSlacker) .
Pawan Mishra
Moving from Asp.Net to WPF and SilverLight .....
.Net 360°
vadambaibala
Member
192 Points
91 Posts
Re: issue with UpdatePanel???
Nov 19, 2008 01:04 PM|LINK
I am little concerned to use AJAX grid but i removed the update panel the performance is far better..
So what i learned here is that avoid update panels as much as possible.....