Granny's Programming Pearls
"inside of every large program is a small program struggling to get out"
JavaRanch.com/granny.jsp

Subramaniam

Greenhorn
+ Follow
since Mar 21, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Subramaniam

Hi Neeti,
If you work with straight Java servlets, you have to deal with HTTP input and HTML output from within Java classes, and you need significant Java experience to build complex applications. With JSP thrown into the mix, you can separate your HTML presentation logic from the more complex business logic embedded in servlets. This means that developers who are experienced with scripting can write the presentation code while more experienced Java developers can focus on solving complex problems in servlets and beans.
JSP can be used with or without Java programming knowledge. In fact, JSP contains a few server-side tags that make it possible to display dynamic data without writing a single line of Java code. You can access beans directly to perform operations and then use JSP tags to display results as dynamic content. You can also use servlets that generate beans which hold results of the servlet operations, and again use JSP tags to display the results without requiring Java coding in the JSP page.
23 years ago
First thanx for the help. I have set & get method as u said. Do the parameters to call the method have to be the same. ie.
int a;
String b;
public void setMyvar(int i, String s){
this.a=i;
this.b=s;
}
public String getMyvar(String s){
return b;
}
once again thanx
23 years ago
I am a method of the Bean but some how it is failing to recognize just one method of the bean. When I comment that line in my JSP it runs fine. I have checked the names, parameters etc but it is not working ? help required urgently !!
23 years ago
I am using IIS as an application server and Tomcat for my JSP when I am calling a JSP from an ASP page is it possible ? It is showing the source code of the JSP pasge ?
23 years ago