473,386 Members | 1,706 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Solution while process is running

I am looking for a solution to use in an aspx web application that will
redirect the user to a new page and display an animated gif indicating that
processing is occurring, and when complete, redirect back to the previous
page picking up where things left off. I've seen similar functionality done
on the web before and would like to follow suit.

A less robust solution, if the desired approach is not feasable, would be a
popup window that has focus, then disappears when the main page has completed
processing.

In the world of the web, end users always do funny things. Using this
approach will help eliminate many of them......

Suggestions, please.

Thanks
Nov 19 '05 #1
3 1264
On Tue, 05 Apr 2005 14:49:04 -0500, Chris Fink""
<Ch*******@discussions.microsoft.com> wrote:
I am looking for a solution to use in an aspx web application that will
redirect the user to a new page and display an animated gif indicating
that
processing is occurring, and when complete, redirect back to the previous
page picking up where things left off. I've seen similar functionality
done
on the web before and would like to follow suit.

A less robust solution, if the desired approach is not feasable, would
be a
popup window that has focus, then disappears when the main page has
completed
processing.

In the world of the web, end users always do funny things. Using this
approach will help eliminate many of them......

Suggestions, please.

Thanks


Just one approach/example:

http://www.eggheadcafe.com/articles/20050108.asp

Note he mentions alot of other options in that article (besides the one he
shows there)...just Google around you'll find many implementations...

--
Craig Deelsnyder
Microsoft MVP - ASP/ASP.NET
Nov 19 '05 #2
Decent solution, however, the problem that I am faced with is more than one
long running task on the same aspx page. For example, when a button is
pressed a datagrid is loaded which can take 5-10 secs and then when an item
is selected in the datagrid and update occurs on submit which can take
another 5-10 secs. During both of these updates, I would like to display a
processing message to the users.

The difficulty with the above is displaying a message during the execution
lifecycle of the page, in this case twice during two long running processes,
without disrupting the page state and processing events.

Thanks for the assistance!

"Craig Deelsnyder" wrote:
On Tue, 05 Apr 2005 14:49:04 -0500, Chris Fink""
<Ch*******@discussions.microsoft.com> wrote:
I am looking for a solution to use in an aspx web application that will
redirect the user to a new page and display an animated gif indicating
that
processing is occurring, and when complete, redirect back to the previous
page picking up where things left off. I've seen similar functionality
done
on the web before and would like to follow suit.

A less robust solution, if the desired approach is not feasable, would
be a
popup window that has focus, then disappears when the main page has
completed
processing.

In the world of the web, end users always do funny things. Using this
approach will help eliminate many of them......

Suggestions, please.

Thanks


Just one approach/example:

http://www.eggheadcafe.com/articles/20050108.asp

Note he mentions alot of other options in that article (besides the one he
shows there)...just Google around you'll find many implementations...

--
Craig Deelsnyder
Microsoft MVP - ASP/ASP.NET

Nov 19 '05 #3
On Wed, 06 Apr 2005 08:51:06 -0500, Chris Fink""
<Ch*******@discussions.microsoft.com> wrote:
Decent solution, however, the problem that I am faced with is more than
one
long running task on the same aspx page. For example, when a button is
pressed a datagrid is loaded which can take 5-10 secs and then when an
item
is selected in the datagrid and update occurs on submit which can take
another 5-10 secs. During both of these updates, I would like to
display a
processing message to the users.

The difficulty with the above is displaying a message during the
execution
lifecycle of the page, in this case twice during two long running
processes,
without disrupting the page state and processing events.

Thanks for the assistance!

"Craig Deelsnyder" wrote:
On Tue, 05 Apr 2005 14:49:04 -0500, Chris Fink""
<Ch*******@discussions.microsoft.com> wrote:
> I am looking for a solution to use in an aspx web application that

will
> redirect the user to a new page and display an animated gif indicating
> that
> processing is occurring, and when complete, redirect back to the

previous
> page picking up where things left off. I've seen similar

functionality
> done
> on the web before and would like to follow suit.
>
> A less robust solution, if the desired approach is not feasable, would
> be a
> popup window that has focus, then disappears when the main page has
> completed
> processing.
>
> In the world of the web, end users always do funny things. Using this
> approach will help eliminate many of them......
>
> Suggestions, please.
>
> Thanks


Just one approach/example:

http://www.eggheadcafe.com/articles/20050108.asp

Note he mentions alot of other options in that article (besides the one
he
shows there)...just Google around you'll find many implementations...

--
Craig Deelsnyder
Microsoft MVP - ASP/ASP.NET


OK, check out the first couple returned articles here...dunno if they're
better, unfortunately I haven't had time to read them (swamped right now),
but wanted to get you more options:

http://search.microsoft.com/search/r...&c=0&s=1&swc=0
--
Craig Deelsnyder
Microsoft MVP - ASP/ASP.NET
Nov 19 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: RL | last post by:
Hello Perl gurus, 1. I have a web page where I can push a button (dospawn.html). 2. This button calls a CGI script (spawnboss.cgi) 3. spawnboss.cgi calls a forking perl script (forkme.pl) 4....
4
by: TieTo | last post by:
Hello, I'm looking for a way to identify a running process from which service it is started. All seems working well so far. I am using a simpel wmi call to enumerate all running processes and...
6
by: Moses M | last post by:
I posted this a short while ago , but I don't think I explained the problem clearly. Task Manager lists processes running on a local system, including a "user name" associated with each process...
0
by: ZMan | last post by:
Scenario: This is about debugging server side scripts that make calls to middle-tier business DLLs. The server side scripts are legacy ASP 3.0 pages, and the DLLs are managed DLLs...
4
by: Michael Passalacqua | last post by:
In VB.NET, how do you check to see if an instance of your application is already running? Michael Passalacqua Portland Community College CIS Faculty *** Sent via Developersdex...
0
by: WATYF | last post by:
This is my problem... I have some code that starts a Process and returns it to a variable... (prcBat) At any time while that process is running... I want to be able to Kill it by pressing a...
5
by: kd | last post by:
Hi All, If the name of a process is known, is it possible to check whether it is in execution? What I did was to fetch all the processes running on the system using Process.GetProcesses() and...
11
by: ano | last post by:
Hi, I'm a C# newbie. My application (Solution) contains two Windows application projects. They create their own ".exe" output that means there are 2 Main() methods in one solution. Is is...
8
by: Henrik | last post by:
Hi Is there any way to see what the System process is doing? We have developed an application running at a production site to measure and optimize the production. The application needs to be...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.