Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 Development Tools
 ASP.NET
 Redirect Users while executing.

Author  Topic 

afrika
Master Smack Fu Yak Hacker

2706 Posts

Posted - 2008-04-10 : 18:46:14
Hello,

is there any simpler way to handle a form post that calls a class and takes a long while to execute ?

I have a billing Stored proceedure that takes a while to bill users, esp when they make high volume transactions. however, i will like to have the ability to redirect the user browser to another page. While the class executes in the background.

Am using c#

Is this possible

Thanks

Ehi

jsmith8858
Dr. Cross Join

7423 Posts

Posted - 2008-04-10 : 22:11:52
http://www.c-sharpcorner.com/UploadFile/rmcochran/Multi-threadedAsynchronousProgramming07262007012530AM/Multi-threadedAsynchronousProgramming.aspx

- Jeff
http://weblogs.sqlteam.com/JeffS
Go to Top of Page

afrika
Master Smack Fu Yak Hacker

2706 Posts

Posted - 2008-04-11 : 05:07:19
This is a brilliant topic.

Thanks a lot. I was also looking at calling an exe from a code behind. But this looks much neater.

System.Diagnostics.Process.Start("yourApp.exe");
Go to Top of Page
   

- Advertisement -