There is a String field in my backing bean called urlString. This variable holds a value that I need for a parameter that is located inside of a JSP.
The JSP code containing the parameter looks like this:
What should the code look like inside of the JSP to set the value of the "URL" parameter with the value that is stored inside of the urlString variable located in the page bean?
Note that I have tried the following:
value="#{BackingBeanName.urlString}" which set it to the literal value "#{BackingBeanName.urlString}" .
value =${BackingBeanName.urlString}" which set it to the literal value "${BackingBeanName.urlString}"
THANKS! [ May 10, 2005: Message edited by: Darrin Smith ]