Hi experts, I need to use <a><a/> hyperlink to submit form to asp server. Instead of using button I need to use hyperlink to call function and submit form to asp server. I have no idea how possible is this. Thank you!
Hello Manuel, Its working, but please allow me to add one question. base on the code above i wanted to change the value of e1 during the running of function. can I do that here? e1 is hidden from the form so i can only change its value during the running of the function. Thanks!
function iSubmit()
{
document.getElementById("e1").value = "1975";
document.getElementById("myForm").submit();
alert("summitted");
}