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
[298 byte] By [Sudharsana] at [2007-10-3 0:20:26]
# 1
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
evnafetsa at 2007-7-14 17:11:54 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

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

Sudharsana at 2007-7-14 17:11:54 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...