Hi Dan, Am really very grateful but please I still need further explanation. Let me give u the complete senerio here. I have a webpage called "page1.html". It contains the form with the 2 textboxes and a submit button. The form action calls an asp page called "page1action.asp". Its in this "page1action.asp" that I do the processing to call the popup. The popup should contain another website page completely of another person. while calling the popup i also have to append some IDs and the textbox values like u explained.
Thus assuming I have the IDs to append as CADID="12345" PADID="test" TRANTYPE="3456" I need to know how to append the complete string to the window.open function. Am sorry for all the hassle but do need the help. Would have replied earlier but was out breifly. Ken --- In [email protected], "Dan Powderhill" <[EMAIL PROTECTED]> wrote: > Assuming your textboxes are called "value1" and "value2", something like > this in the page your form is pointing at will do the job :- > > <% > > response.write "<script language=""JavaScript"">" & VbCrLf > response.write " window.open('popup.asp?value1=" & > request.form("value1") & "&value2=" & request.form("value2") & "', > 'windowName');" & VbCrLf > response.write "</script>" & VbCrLf > > %> > > Dan > > ________________________________ > > From: [email protected] > [mailto:[EMAIL PROTECTED] On Behalf Of kejeckam > Sent: 31 May 2005 15:26 > To: [email protected] > Subject: [AspClassicAnyQuestionIsOk] urgent help please > > > Please am not so good on ASP. Am actually working oin this little > project. I have a web page that contains a form with 2 textboxes and a > submit button. When info is entered into the text boxes and the submit > button clicked, i want the data in the boxes to be picked and added or > appended to a URL which will now be opened inside a popup. Please I > need detailed reply (possibly code snippet) > > Ken > > > > > > > > ________________________________ > > Yahoo! Groups Links > > > * To visit your group on the web, go to: > http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/ > > * To unsubscribe from this group, send an email to: > [EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED] subject=Un > subscribe> > > * Your use of Yahoo! Groups is subject to the Yahoo! Terms of > Service <http://docs.yahoo.com/info/terms/> . > > > > > [Non-text portions of this message have been removed] Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
