koushik


{ City } bangalore
< Country > india
* Profession * web developer
User No # 37333
Total Questions Posted # 0
Total Answers Posted # 3

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 39
Users Marked my Answers as Wrong # 7
Questions / { koushik }
Questions Answers Category Views Company eMail




Answers / { koushik }

Question { IBM, 21206 }

How can we submit a form without a submit buttom?


Answer

document.FORM_NAME.action="page.php";
document.FORM_NAME.submit();

Is This Answer Correct ?    26 Yes 4 No

Question { IBM, 21206 }

How can we submit a form without a submit buttom?


Answer

Javascript form submit

document.FORM_NAME.action="page.php";
document.FORM_NAME.submit();

Is This Answer Correct ?    12 Yes 3 No


Question { Bajaj, 19063 }

If there are 10 text boxes in a form having same name,
their value are different. Value of which textbox will be
received on action script?


Answer

if (text box name "txt_name") then
get last box value
else if(text box name "txt_name[]") then
get all values in array format

Is This Answer Correct ?    1 Yes 0 No