|
 |
asp_web_howto thread: Messaging
Message #1 by "Abhilash" <abhilashbr@y...> on Fri, 29 Dec 2000 13:50:25 -0000
|
|
Hi
In a page I have some form fields and getting inputs from there. I want to
give a message 'Processing... Please Wait.' message and go to another page
on success field values from the form after processing the values. And if
there are invalid values I've to go to another page showing error message.
Pls help me to solve this prob.
Abhilash
---
MaximumASP offers enhanced hosting solutions on the Windows 2000 platform. Dedicated processor, RAM, and server resources provide
dedicated server performance at virtual server prices. Commercial components provided; custom components allowed.
---
You are currently subscribed to asp_web_howto as: $subst('Recip.EmailAddr')
To unsubscribe send a blank email to leave-asp_web_howto-$subst('Recip.MemberIDChar')@p2p.wrox.com
Message #2 by "Unterste, Andreas" <unterste@d...> on Fri, 29 Dec 2000 09:08:37 -0500
|
|
in your page where the form results are posted to :
<% response.buffer = false 'important to have stuff displayed
before the processing is over
response.write("Processing....")
'Do some processinghere
If ProcessingSuccesfull then
response.redirect("Successpage.asp")
Else
response.redirect("Failurepage.asp")
End If
%>
That should be the rough sketch !
HAPPY NEW YEAR TO EVERYBODY !
-----Original Message-----
From: Abhilash [mailto:abhilashbr@y...]
Sent: Friday, December 29, 2000 14:50
To: ASP Web HowTo
Subject: [asp_web_howto] Messaging
Hi
In a page I have some form fields and getting inputs from there. I want to
give a message 'Processing... Please Wait.' message and go to another page
on success field values from the form after processing the values. And if
there are invalid values I've to go to another page showing error message.
Pls help me to solve this prob.
Abhilash
---
MaximumASP offers enhanced hosting solutions on the Windows 2000 platform. Dedicated processor, RAM, and server resources provide
dedicated server performance at virtual server prices. Commercial components provided; custom components allowed.
---
You are currently subscribed to asp_web_howto as: $subst('Recip.EmailAddr')
To unsubscribe send a blank email to leave-asp_web_howto-$subst('Recip.MemberIDChar')@p2p.wrox.com
Message #3 by James Counihan <James.Counihan@n...> on Fri, 29 Dec 2000 08:32:51 -0800
|
|
Hi Abhilash
:~~~~~~~~~~~~~~~~
: I want to give a message 'Processing...
: Please Wait.' message and go to another page
:~~~~~~~~~~~~~~~~
Alex Homer wrote an article, "Displaying a 'Progress Bar' in a Web Page",
that does what you're looking for.
It's at http://www.asptoday.com/articles/20000317.htm
James Counihan
Web Dev, Netdesk Corporation
james.counihan@n...
www.netdesk.com
xxx.xxx.xxxx
---
MaximumASP offers enhanced hosting solutions on the Windows 2000 platform. Dedicated processor, RAM, and server resources provide
dedicated server performance at virtual server prices. Commercial components provided; custom components allowed.
---
You are currently subscribed to asp_web_howto as: $subst('Recip.EmailAddr')
To unsubscribe send a blank email to leave-asp_web_howto-$subst('Recip.MemberIDChar')@p2p.wrox.com
|
|
 |