Error in jsp program calling servlet variable
- by megala
hi i created one webapplication project.It containe one servlet file jsp file.
I created one string variable in servlet and assign some value like
/* sampleservlet.java *******/
String s=" WELCOME"
My constraints I want to display the string in my jsp file.so that i import the servlet file inj jsp and i created object as ---call---
jsp file contain following coding
<%sampleservlet call ;%
<%call.s%
But it shows error how to solve this?