Struts
Hi ,I have a struts page in which i am ....using one text field<html:text property="seeds" />is there any way to get the value entered in that textfiled....,bfr submittin the page.i mean like document.seeds.value?this way....thanks in
in Java, no.in javascript, yes.You normally have to access fields through their parent form: document.forms[0].seeds.value would probably work (takes the first form on the page)ordocument.nameOfMyForm.seeds.value
Thank you...
is that possible to get that one from a form field in a Struts..page?
the exact thing is like
<html:form action="/login.jsp">
<html:text property="name"/>
</html>
i want to make use of the value entered for the text field.....in my java scritp function ....
is that possible....how to retreive that one