how to send value of combobox to servlet on onChange event
843836Apr 15 2005 — edited Jan 23 2009hi.
there is a combobox in my Jsp page along with other textboxes , i want that onchange of its value a servlet will be called which in return fill the textboxes with the corresponding value.
the code which i am using is:---
// in java script
function calservlet()
{ document.submit();
}
// in form
<select name="Project_ID" onChange="calservlet()" >
is there any other solution for my problem , Please help me out
thanx