Code Bank
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsProgrammingCode Bank

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old June 25th, 2004, 07:23 AM
obriend6 obriend6 is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jun 2004
Posts: 6 obriend6 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Form Problem

I have a form with 5 input fields including one dynamic drop-down menu. There is an option to add to this menu if what you want isn't in it. This is done by way of a pop - up box. The box - up box has a form of its own and i can add new values to the drop down menu through this. (The values are saved in a database) When i close the pop up box the origional parent page is automatically refreshed. But this cause the other input fields to loose the values that were entered into them.

Thus this is my problem. I guess session variables would be the answer but i dont know how to do this. The origional parent page posts to a page "update.asp" and my pop-up page is "pop_up.asp" so i dont know how to save the values in my input fields into session variables. Can i post them to the "pop_up.asp" page. If so how would i do this.
Or maybe there is a better solution??

Reply With Quote
  #2  
Old June 25th, 2004, 09:09 AM
Yeruhn's Avatar
Yeruhn Yeruhn is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Feb 2004
Location: Netherlands
Posts: 428 Yeruhn User rank is Sergeant (500 - 2000 Reputation Level)Yeruhn User rank is Sergeant (500 - 2000 Reputation Level)Yeruhn User rank is Sergeant (500 - 2000 Reputation Level)Yeruhn User rank is Sergeant (500 - 2000 Reputation Level)Yeruhn User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 2 Days 16 h 35 m 27 sec
Reputation Power: 10
You can add the values to the url:
pop_up.asp?var1=x&var2=y

Reply With Quote
  #3  
Old June 30th, 2004, 11:56 PM
Bullschmidt's Avatar
Bullschmidt Bullschmidt is offline
Guru
ASP Free Novice (500 - 999 posts)
 
Join Date: May 2003
Location: USA
Posts: 881 Bullschmidt User rank is Corporal (100 - 500 Reputation Level)Bullschmidt User rank is Corporal (100 - 500 Reputation Level)Bullschmidt User rank is Corporal (100 - 500 Reputation Level)Bullschmidt User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 9 h 9 m 35 sec
Reputation Power: 9
Here's a snippet of code I did once that might give some ideas:

<script language="JavaScript">
function UpdateOpenerPage(){
// Dim var.
var frm;
var varContactID;

// Form.
frmOpener = window.opener.document.frmMain;

// Set form flds.
frmOpener.PhoneNumber.value = "<%= ContactPhone %>";
frmOpener.CallerExtension.value = "<%= ContactExtension %>";

// Add new item to combobox and select it.
frmOpener.ContactID.options.length++;
frmOpener.ContactID.options[frmOpener.ContactID.options.length - 1].value = "<%= ContactID %>";
frmOpener.ContactID.options[frmOpener.ContactID.options.length - 1].text = "<%= ContactName %>";
frmOpener.ContactID.options[frmOpener.ContactID.options.length - 1].selected = true;

// Close this popup window.
window.close();
}
</script>
__________________
J. Paul Schmidt
www.Bullschmidt.com - Freelance Web and Database Developer
www.Bullschmidt.com/DevTip.asp - Classic ASP Design Tips

Last edited by Bullschmidt : June 30th, 2004 at 11:59 PM.

Reply With Quote
Reply

Viewing: ASP Free ForumsProgrammingCode Bank > Form Problem


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway