vote up 0 vote down star

I want to auto submit my form and show the update progress area once it is submitted. I have tired adding 2 fucntions to the page:

window.onload=function(){
     __doPostBack('UpdatePanelId','');
}

and....

window.onload=function(){
     var btn = document.getElementById('buttonID');
     btn.click();
}

The page gets posted back to, but the progress area is not showing up. Any thoughts how I can handle this?

flag

62% accept rate
wouldn't the upload control cause full page postback? from what i understand UpdateProgress won't show up on FULL POSTBACK. – roman m Nov 5 at 22:13
see edited answer – roman m Nov 5 at 22:57

2 Answers

vote up 0 vote down

I got it to work!!

Origianlly, I had my script running inside the ScriptManager client script block. I moved it outside of the script manager and added a timeout to the script. Here is what it looks like:

            Dim script As String = "window.onload = function(){" & vbCrLf
            script += "setTimeout('submitPage()',2000);}" & vbCrLf
            script += "function submitPage(){" & vbCrLf
            script += " var btn = document.getElementById('" & Me.btnProcess.ClientID & "');" & vbCrLf
            script += "btn.click();}" & vbCrLf    
                            ClientScript.RegisterClientScriptBlock(Me.Page.GetType, "autosubmit", script, True)
link|flag
I didn't try this, but I guess i could have added the code to the Sys.Application.add_load – DDiVita Nov 7 at 1:38
vote up 1 vote down

Based on your further comments:

you have an UpdatePanel and SomeUploadControl outside of that panel. You want to show UpdateProgress when you cause a FULL POSTBACK from SomeUploadControl.

If the above assumptions are correct - I'm afraid you can't do what you want. The whole idea behind the UpdateProgress is to work on PARTIAL POSTBACKS.

I'm pretty sure the above is correct, but I might be mistaken.


Edited in light of your comment :)

try:

window.onload=function(){
     __doPostBack('buttonID','');
}

if this doesn't work - give more details on the problem you're trying to solve (why are you trying to cause the postback via javascript), and there might be a better way altogether.

link|flag
I am using this control. I assumed my title gave that away. When the page is auto submitted, the UpdateProgress control is not showing up. – DDiVita Nov 5 at 21:57
Nope.....The page gets submitted, but no progress area. – DDiVita Nov 5 at 22:06
Well, I have an upload page and I am using a 3rd party upload control to handle the file upload. The control cannot be put into and updatepanel. The user will upload a list of e-mail addresses in CSV format. After the upload the file gets processed, but it can take a few minutes. My site makes use of the updateprogress control and it is pretty standard throughout the site. So, we would liek to keep it the same. – DDiVita Nov 5 at 22:09
I forogot to add...After the upload is doen the site is redirected to a page to process the file. I have it auto submitting so the user doens't need to have any interaction. – DDiVita Nov 5 at 22:10
wouldn't the upload control cause full page postback? from what i understand UpdateProgress won't show up on FULL POSTBACK. – roman m Nov 5 at 22:13
show 5 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.