Update Progress Bar Keeps On Rotating For Request More Than 30 Minutes

Feb 11, 2011

I have a web page that performs searching, on very large database about millions and millions of records. The request for this has been sent from an update panel. We know that for this request, the server needs around 1hr to do such a search. And our client even accepts that the server might take such a long time. Till the request is of less than 30 minutes, our search result grid is updated on browser. But if the request is of more than 30mins the update progress keeps on rotating. There is no server timeout of either session, database, iis or the asynchronous post back, that we have defined in script manager.

I have verified my whole web.config and also the machine.config file for any default setting of 30 but haven't got any. Update progress bar keeps rotating for request more than 30 minutes.

View 1 Replies


Similar Messages:

AJAX :: Update Progress Control Ie8 - Progress Indicator Does Not Hide?

Feb 16, 2010

I have a wierd issue with the update progress control in ie8. I have a modal popup that loads a pdf in an iframe, then i have a button click that navigates away from the pdf and shows a form in the same modal. All this is wrapped in an update panel, which i have an update progress control associated with. The control shows correctly in ie7, firefox, safari, and chrome. But in ie8 when the async post back is complete the progress indicator does not hide, until I click on the screen or scroll the page, then it hides and the form shows.

View 3 Replies

MVC: First Access After Some Minutes Slow, Then Every Following Request Is Fast?

Jul 30, 2010

when I access any page of my ASP.NET MVC website first time, then this first request is slow. It needs about 4-5 seconds to load. But every following request to any page is fast.When I wait some minutes or a hour then every first request is slow again. Every following request is fast.

I think that IIS 7 is compiling the code and keep it in memory. After some time it will delete it from memory so it needs to compile it again.What can I do that every first request is as fast as every following request?
(Without precompiling my source, if possible)

View 3 Replies

AJAX :: Request Takes A Few Minutes Then Times Out - Only In Firefox

Nov 22, 2010

I have a very peculiar problem that I've been wrapping my head around and I just can't figure it out. I have an updatepanel. Inside that I have a TabContainer. And inside that I have three TabPanels, each of which has checkboxes. Sometimes (and it happens often enough that I can easily reproduce it, but strangely may not happen with the same exact steps), when I click on different tabs or click on checkboxes inside the tabpanels (basically when I do an AJAX async postback), the request takes about a few minutes, after which the request just stops. Looking at the Firefox error console, I see this popping up after a few minutes...

Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 0 Now, the asyncpostbacktimeout property for the ToolkitScriptManager is set at 360000, which is 6000 minutes, so the problem has nothing to do with that setting. In IE, I never have this problem and the AJAX requests are instantaneous and smooth, no delays. So this isn't a network or database lag issue. Something to do with how AJAX is run in Firefox. Why is it that sometimes, an AJAX request in Firefox takes a few minutes and just stops processing the request? And once again, the steps to reproduce this problem may not be the same every time, it seems random - very strange. Google searches have yielded very little help on this. I've tried things like extending the timeout property (which again has nothing to do with this), setting Response.Cache.SetNoStore() everywhere. Is there a crude workaround I can do (at this point, I'm willing to settle for a workaround). I just don't know anymore.

View 1 Replies

AJAX :: Update Panel & Update Progress In User Control / Multiple Instances On Same Page

Feb 16, 2010

I have a user control, that has an update panel and update progress control in it.

I use this user control in more than 1 location on the same page.... problem is, when ucA posts back, I see the update progress control for both ucA and ucB. I assume this is because it is a user control and the update panel and progress are named the same?

Either way - how do I make it so that the update progress only displays for the proper user control?

View 3 Replies

AJAX :: Suppress Update Progress Trigger From Update Panel?

Aug 9, 2010

I have update panel , in update panel i have one button control which exposes onlientClick event ( it dosent have click event to do postback to server).

and i have one updateprogress panel. So my problem is though i'm performing operation on client side , internally the async event is firing and making updateprogress panel to act (having rotation gif image) which i dont want , as it rotates for 10-15 sec more even after the operation at client side is done !

View 6 Replies

AJAX :: Update Panel And Update Progress Controls?

Aug 31, 2010

I have written a Crystal reports web application, that prompts ths user for parameters and then apply them and exports the report to a folder as .rpt and then display the report.

I prompt the parameters on one screen and then display the report on another page. I have the AJAX update panel and update progress controls in the parameter page. When the user enters the parameters and click on ok, I export the report and then loads the report to a session report document and transfer the user to the second page where the report is displayed. I use the following code to do transfer to the seconds page.

I have excluded the report load and parameter assign code here.

[Code]....

In the second page I have the following:

rptViewer.reportsource = Session("rpt")

My problem is this works one time and then stops working the second. What I found out was it comes to the statement:

Response.Redirect("show.aspx")

But it does not even load the show.aspx page. It stays on the parameter page. There are no errors displayed. I could not see any errors when I debug the application also. And out of the blue it works sometimes. And if I remove the update panel and progress control, my report works all the time.

View 5 Replies

Web Forms :: Update Gridview After Every 2 Minutes

Jan 17, 2011

I am working on asp.net 3.5. In my application I used update panel with grid. I want to update gridview after every 2 min.

View 3 Replies

AJAX :: Update Progress Without Update Panel?

May 12, 2010

Is it possible to use this without the update panel?

What I'm trying to acomplish is have a animated .gif run while the code is running and want to know if it's possible to run after a button click.

View 5 Replies

AJAX :: Update Progress With Update Panel

Apr 27, 2016

I am referring below url link for update progress, how can i use if i have multiple update panel in page and how to make it working without mentioning sleep time, like it works update hides when processing complete else it works till execution

[URL] ....

View 1 Replies

Security :: How To Redirect The User After 2 Minutes If There Is Inactivity For 2 Minutes

Feb 13, 2011

I want to redirect the user after 2 mins if there is inactivity for 2 mins. I am not using ASP.NEt membership. And I dont want to use Sessiontimeout for this. Session timeout will logout the user even if he is working on the system. My objective is like screensaver process.

If there is no action for the specified time, the screensaver runs. Similarly, I want to redirect the user to login page.

note that i have already handled it with the following javascript:

[Code]....

Here what my problem is,

the user is working on the site...ok.. he want to see someother site.he browse someother site and works on....or even he can do some other work in his system...but he is active in his system... What this script does is, it automatically logout the user and redirect him to login page. But it should not do while he is active...IT SHOULD REDIRECT IF HE IS NOT ACTIVE REALLY (Similar to Screensaver process)

Is it possible ?

View 1 Replies

AJAX :: Use A Progress Update?

Jan 16, 2011

I want to use a progress update and have the code, but it won't let me put it on the screen where I want to. How can I control where it is on the screen?using asp.net; vb web developer 2008; access db

[Code]....

View 2 Replies

AJAX :: Use Update Progress In .net 3.5?

Jan 29, 2011

i want to use update progress in asp.net 3.5 . i want to show update progress while page loading like gmail.

View 7 Replies

AJAX :: Using The Update Progress Control?

Feb 10, 2010

I have a question about using the update progress control. I gasp the basic use of the control - basically you can associate it to an update panel, and whenever that update panel is updated, this update progress control is displayed on the page.

I do have a couple of questions though:

1. My project uses a lot of user controls. I would like to display an update progress control that "disables" or "whitewashes" the contents of the user control - which for this example - lets say it is a gridview and a drop down list - when the user changes
the selected value of the drop down list, the grid rebinds. I want the update progress control to shadow or whitewash only that grid while it rebinds. The rest of the page should be accessible.

2. I have certain pages that I want to be locked while an update panel is updating - in otherwords, the entire page is whitewashed or shadowed out and a ajax loader gif is shown. I currently have this working with an update progress control that does not have the AssociatedUpdatePanelID property set. This appears to fire every time any update panel is updated. If I were to have one of the user controls that has an update progress control that only applies to itself - and those update panels update - which update progress would be shown?

View 3 Replies

AJAX :: Update Progress Bar Is Not Modal?

Feb 25, 2011

There is a nice video on progressbar at [URL] where the URL is: [URL] But the progressbar is not displayed modally. It only gives an illusion of being modal based on the CSS. If I put another button either within the Updatepanel or outside, I am able to click it, and it post backs. Is ther any other settings needed to be added or it will never be modal? I have included the code downloaded from the site along with my extra button.

[Code]....

View 2 Replies

JQuery :: How To Center A Update Progress

Feb 20, 2011

I figured out how to create a update progress in code behind as a class, but I would like to center it both horizontal and vertical each time it is called.

I will share the code for the modal update progress, but I need some getting it centered. I'm really good with code behind, but i'm weak in javascript, and jquery looks promising for me. I don't understand how to get the client id of the update progress or update panel to sync up with the jQuery.

I found some code, but I can't connect the panel object to the jquery code I found. I don't think I'm missing much here, or that far off base. Perhaps someone out there can take a look at this, and maybe someone can

FYI: rm is ResourceManager

[Code]....

[Code]....

[Code]....

[Code]....

[Code]....

View 4 Replies

C# - Update Progress While Processing Data?

Mar 27, 2010

I have a process, that outputs step by step messages (i.e., Processing item 1... Error in item 2 etc etc).

I want this to be outputted to the user during the process, and not at the end.

I pretty sure i need to do this with threading, but can't find a decent example.

View 1 Replies

AJAX :: Update Progress Within A Datalist?

Sep 1, 2010

I have an update panel and then a datalist and then a nested datalist...it looks like this:

<update panel>
<datalist1>
<datalist2>
</datalist2>
</datalist>
</updatepanel>

Problem is, within datalist 2, I have some linkbutton's and I'd like to show a progress "gif" (update progress) when the button is clicked. I can create the update progress, but when you click the button, you get the "gif" shown for every item in the nested datalist. Anyone know how I can identify where I am in the datalist (which linkbutton) and only show the progress "gif" for that button?

View 5 Replies

AJAX :: Update Progress Bar In Treeview?

Dec 1, 2010

I have treeview on my webpage , I am populating it on server side coding.All the tree nodes are documents like .doc or .pdf and with their path as navigation url. My problem is that when I click on node , it takes time to load the document. So I need to show progress bar for the time it takes to download the document form server.

[Code]....

View 3 Replies

AJAX :: Update Panel And Progress Bar?

Jul 19, 2010

I am trying to set the value of dropdown box thru client side javascript postback function. On client side event I m calling something like __doPostBack('<%=UpdateButton.ClientID%>', month); The update button is inside update panel. When i debug it, i see my code in vb.net to change the selectedindex property, but on screen it shows the old value.

<%
@
Page

[code]...

View 2 Replies

AJAX :: Update Progress Is Not Working Properly?

Apr 22, 2010

I developed my application form in aspx page its such a huge form(6000 lines), I used update progress there for that updatepanel, But i cant able to see the update progress icon when i rendering the page.

[code]....

View 1 Replies

AJAX :: How To Update UI With Work-progress Within A Thread

Jan 22, 2010

I want to update my UI with work-progress within a thread. So i am planing to call webmethod every 2 seconds to get the current progress status. This is my code but I can not complete it.

[Code].....

View 1 Replies

AJAX :: How To Use Update Progress Control In Application

Jun 5, 2010

How i can use update progress control in my application?

View 2 Replies

AJAX :: Progress Bar Not Rotate On Update Page

Jan 6, 2010

I am working on VS2008 asp.net 3.5, I have problem regarding progress bar. When I used it on List Page it works fine image is rotating but on update page image is not rotate, it looks like static image

<div id="Progres">

View 5 Replies

AJAX :: Using Update Progress With Form Action?

Apr 7, 2010

Im using youtube api for uploading videos on tube through my website. I am able to upload the videos, but what i need is something to show to the user that my webpage is doing something. So to do that i am using an update panel with update progress. That problem im having is, when i clicked other buttons the update progress shows, but when i click on upload video button which is of input type file and submit, it never shows the update progress. Although there is a request in the page wwhich shows in the status bar about connecting to youtube.

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved