| |
adminkoe
Posts: 117
Score: 0
Joined: 12/23/2000
From:
Status: offline
|
Hi Michael, Try this code, it works as long as you dont use Set command , Set defines a variable as an object and text field is not an object. <html> <head> </head> <body> <form name="frmStaff"> <input type=text value="arrrghhhhhhhhhhhh" name="txtBox"> </form> <script language="vbscript"> dim a a = frmStaff.txtBox.value msgbox a </script> </body> </html> Regards, Andi Zain
|
|