ASP FormsAs of Oct 5, 2005, this forum is now locked. Please use "Classic ASP beginner" at http://p2p.wrox.com/forum.asp?FORUM_ID=54 or "Classic ASP Professional" http://p2p.wrox.com/forum.asp?FORUM_ID=56 instead.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP Forms section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
I am working in a project where in I am converting some of the mainframe programs to ASP and proxies.
My question is:
I have designed a web page with many forms in it. Whenever I say Post or GET , the same Page is submitted to the server and In the process I need to read all the data again because the web page is refresehed.
Is there any other option where in I will create a asp page with just Business rules which should get executed at the server and after sucessfull execution passback the values to the called ASP page. In this way I can reduce the response time.
I thought of doing remote scripting,but it is not adviced as some browsers will not support it.
Is that you want the values back from the server to show them on the same ASP page? What is that you want to do with those values passed to the server?
_________________________
-Vijay G Strive for Perfection
hi there
if u want to read the data again that is posted use the session objects to store the same or use cookies or use the file system object to store in a file the value postedt and delete the file after redaing the same.