K
Ken Adams
Bascially I got
<% String myString = request.getParameter("blah")%>
Now futher down I want to set a textfield to that value.
i have tried this but it claims that it doesn't know what id is. How do I
reference it.
The reason I don't just put the request.getParameter right in the html
tag,which I know works, is because I want to do some further manipulation to
the string before I set the value of the txt field. Also it isn't very
convient to put the html tag inside the jsp for maintenance issuse.
<input type="text" name="id" value="<%=id%>" >
Thanks Alot
<% String myString = request.getParameter("blah")%>
Now futher down I want to set a textfield to that value.
i have tried this but it claims that it doesn't know what id is. How do I
reference it.
The reason I don't just put the request.getParameter right in the html
tag,which I know works, is because I want to do some further manipulation to
the string before I set the value of the txt field. Also it isn't very
convient to put the html tag inside the jsp for maintenance issuse.
<input type="text" name="id" value="<%=id%>" >
Thanks Alot