-
passing value
hi
i want to open a page not in the parent page but a diffrent page without using a frame?
and i want to transfer information to next page form the "me" page?
how can i do it?
in short
i have to inputbox in one page and i want that when i click on the button it will open a new window and transfer the value from the inputbox to next page inputbox?
-
<SCRIPT language=vbscript>
<!--
Option Explicit
Function ManuyForm_onsubmit
dim myForm
set myForm = document.ManuyForm
if len(myForm.shemel_maon.value) > 0 and not IsNumeric(myForm.shemel_maon.value) Then
MsgBox "cccccccccc", _
48, _
"cccccccc"
myForm.shemel_maon.focus()
myForm.shemel_maon.select()
ManuyForm_onsubmit = false
exit function
ManuyForm is my form name
mybe that will help?