Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP 3 Classic ASP Active Server Pages 3.0 > ASP Forms
|
ASP Forms As 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
 
Old October 26th, 2003, 04:58 AM
Registered User
 
Join Date: Oct 2003
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default maintain values in the form when redirect back

Hi,
I have a form with some fields an a upload button,when the upload button clicked a new windows will opened.how can it redirect back to the form but remains the value entered before.
tanks
Alfi
 
Old October 26th, 2003, 11:20 PM
Friend of Wrox
 
Join Date: Oct 2003
Posts: 479
Thanks: 0
Thanked 3 Times in 3 Posts
Send a message via MSN to surendran Send a message via Yahoo to surendran
Default

opening page
'''''''''''''
<SCRIPT LANGUAGE=javascript>
<!--
function ddd()
{
window.opener.document.<formname>.action="main.asp "
window.opener.document.<formname>.yourvalueboxname .value="value"
window.opener.document.<formname>.submit()
window.close()
}
//-->
</SCRIPT>
'''''''''''''''''''''
in form page
'''''''''''''''''''''
<input type=hidden name="yourvalueboxname">

surendran





Similar Threads
Thread Thread Starter Forum Replies Last Post
passing Multidimensional Array Values back to form stitch Classic ASP Databases 2 June 21st, 2013 01:59 PM
POST values and redirect brettk_1 ASP.NET 1.0 and 1.1 Professional 1 January 30th, 2006 08:04 AM
POST values and redirect brettk_1 ASP.NET 2.0 Professional 1 January 30th, 2006 08:03 AM
how to pass back the values to applet. kfarooq Servlets 1 July 23rd, 2003 12:10 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.