| Author |
error fowarding while calling a method
|
daniel schulken
Ranch Hand
Joined: Sep 23, 2000
Posts: 34
|
|
here is what i am trying to do. %> <jsp:forward page="<%=NavigationBean.getNextJsp("Next","/jsp/itemsetup/ItemCharacteristicsList.jsp",ItemMasterInstanceBean.currentItemMaster.getType_of_item().charAt(0))%>" /> <% I am getting a Attribute Next has no value error message at compile. any ideas? thanks
|
 |
Ron Newman
Ranch Hand
Joined: Jun 06, 2002
Posts: 1056
|
|
My guess is that your nested use of double-quotes ("") is getting you in trouble. Try changing the outer level to single-quotes: <jsp:forward page='<%=NavigationBean.getNextJsp("Next","/jsp/itemsetup/ItemCharacteristicsList.jsp",ItemMasterInstanceBean.currentItemMaster.getType_of_item().charAt(0))%>' />
|
Ron Newman - SCJP 1.2 (100%, 7 August 2002)
|
 |
 |
|
|
subject: error fowarding while calling a method
|
|
|