ASP.NET Form
-
Hi All I have a page in which there are two forms. One form is used to send values to another page. There is no Submit Button for first form. I m using a button of second form. How Can I submit the 1st Form when I click on the Button of Second Form.
-
Hi All I have a page in which there are two forms. One form is used to send values to another page. There is no Submit Button for first form. I m using a button of second form. How Can I submit the 1st Form when I click on the Button of Second Form.
-
Hi All I have a page in which there are two forms. One form is used to send values to another page. There is no Submit Button for first form. I m using a button of second form. How Can I submit the 1st Form when I click on the Button of Second Form.
You can programmatically submit the first form using JavaScript.
document.forms[0].submit();
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
You can programmatically submit the first form using JavaScript.
document.forms[0].submit();
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
I m writing my Problem again my dear. I have a page in which two forms are used. In the Second Form there is a button. I want to Submit the first Form when some one click on the Button of Second Form. There is no Submit Button in the first Form. How can I do this.
-
I m writing my Problem again my dear. I have a page in which two forms are used. In the Second Form there is a button. I want to Submit the first Form when some one click on the Button of Second Form. There is no Submit Button in the first Form. How can I do this.