Re: [twincling] small doubt with java html

2007-11-13 Thread Rajshekhar AP
On Tuesday 13 November 2007 20:48, Dinesh Nidamanuru wrote: hi I have a small doubt. if we have a small piece of html java code like below. form name=form action=newconnectioncontroller method=post input type=text name=xyz input type=submit value=submit onclick= ??? my doubt is..the

Re: [twincling] small doubt with java html

2007-11-13 Thread Anil Kumar
hi, here u can do the client side validation using javascript before actually submitting the form...below is the sample code /html head script type=text/javascript function xyz() { if(document.formname.fieldname.value == ) { alert(please enter all mandatory values);

Re: [twincling] small doubt with java html

2007-11-13 Thread Dinesh Nidamanuru
hi... i have written the code like this ..and i got itthankyou very much. form name=test action=2.html method=post onsubmit= return funct(); input type=text name=z br input type=submit value=submit script language=javascript function funct( ) { if (document.test.z.value==) {

Re: [twincling] small doubt with java html

2007-11-13 Thread Rajshekhar AP
On Tuesday 13 November 2007 22:54, Dinesh Nidamanuru wrote: hi... i have written the code like this ..and i got itthankyou very much. form name=test action=2.html method=post onsubmit= return funct(); input type=text name=z br input type=submit value=submit script