Jsp and JSTL

<td bgcolor="#FFD799" class="edit">${fn:escapeXml(row.enteredby)}</td>i want enteredby value to assign the variable using jsp scriptlet<%%>within this block , i need to access the enteredby valueplease help with sample code
[283 byte] By [dilipsrma] at [2007-11-27 2:55:28]
# 1

what you mean?

if you want to access the variable so you can change it, put it in an input box inside a form so you can change and post the variable

xxxx.html

<form method="post" action="test.jsp">

<input type="text" name="test" />

<input type="submit" name="submitTest">

</form>

test.jsp

<%

if( request.getParameter( "submitTest") == true)

{

out.write( request.getParameter( "test"));

}

%>

radicjesa at 2007-7-12 3:32:15 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...