hi,
I have a jsp file in which i have two html elements like
<form name="form1" action="test.xml" method="post">
<input type="text" name="para1">
<input type="text"name="para2">
<input type="submit" name="ok" value="ok">
</form>
when this for gets submitted i send it to a xml which has tags defined but how do i get to fit these html variables values in the xml.
if i use request.getparameter("para1") it give an error ..
as java code can't be wriiten in xml.
Is there a way that i can get dynamic values of the jsp/html into my xml ???
thanks
I have a jsp file in which i have two html elements like
<form name="form1" action="test.xml" method="post">
<input type="text" name="para1">
<input type="text"name="para2">
<input type="submit" name="ok" value="ok">
</form>
when this for gets submitted i send it to a xml which has tags defined but how do i get to fit these html variables values in the xml.
if i use request.getparameter("para1") it give an error ..
as java code can't be wriiten in xml.
Is there a way that i can get dynamic values of the jsp/html into my xml ???
thanks