kewlguy
07-21-2003, 06:32 PM
how to create a registration form which accept your costumer details and displays the validated data in new window..
hope you post the reply soon...:(
hope you post the reply soon...:(
|
Click to See Complete Forum and Search --> : javascript kewlguy 07-21-2003, 06:32 PM how to create a registration form which accept your costumer details and displays the validated data in new window.. hope you post the reply soon...:( Charles 07-21-2003, 07:05 PM I suppose this is a question about feedback: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta name="Content-Script-Type" content="text/javascript"> <title>Example</title> <form action="" target="child" onsubmit="window.open('', 'child', 'height=400,width=300")"> <div> </div> </form> Note the use of the transitional DTD. The Strict HTML versions do not have a "target" attribute. Note also that you can omit the "onsubmit" handler if you want the new window to have the user's default window geometry. PeOfEo 07-22-2003, 11:15 AM I would suggest using some sort of server side language to do the whole system in of cource. It would make it a little more air tight. webdeveloper.com
Copyright Internet.com Inc., All Rights Reserved. |