| Author |
class= operation
|
John Davis
Ranch Hand
Joined: Nov 02, 2000
Posts: 181
|
|
|
I have inherited a large web application which uses the MVC pattern where M=jdbc, V=jsp, and C=jsp. In the JSPs, I have encountered the extensive use of the class parameter in TD elements. I need to discover how this parameter operates in this environment. I have not been able to locate any .class files which match up to these class parameters. What should I be looking for?
|
 |
Gustavo Adolpho Bonesso
Ranch Hand
Joined: May 11, 2002
Posts: 103
|
|
|
What do you mean with TD elements ?
|
Gustavo Adolpho Bonesso<br />SCJP1.4
|
 |
Vijay S. Rathore
Ranch Hand
Joined: Oct 29, 2001
Posts: 449
|
|
|
I have a question? How can we use C=JSP. Usually Servlet is handling that part.
|
SCJP, SCJD, SCWCD1.4, IBM486, IBM484, IBM 483, IBM 287, IBM141, IBM Certified Enterprise Developer - WebSphere Studio, V5.0
Author of IBM 287 Simulator Exam
|
 |
John Davis
Ranch Hand
Joined: Nov 02, 2000
Posts: 181
|
|
|
|
 |
John Davis
Ranch Hand
Joined: Nov 02, 2000
Posts: 181
|
|
Vijay, I know, JSP as Controller seemed odd to me at first, but this application has hundreds of JSPs and no servlets. This works because JSPs can be entirely Java Scriplets which are essentially dynamically compiled servlets. The JSPs POST to JSP controllers, and they send-redirect to other JSP controllers and/or viewers. JD
|
 |
Malhar Barai
Author
Ranch Hand
Joined: Aug 17, 2001
Posts: 399
|
|
hi JD the "class" that you are seeing in TD tag is for the DHTML/CSS stuff. In the html HEAD section you would see something similar to : hth MB
|
Malhar Barai
SOA & Java Book
|
 |
Vijay S. Rathore
Ranch Hand
Joined: Oct 29, 2001
Posts: 449
|
|
Or alternatively look for some code like <link href="....some.css" rel="stylesheet" type="text/css"> indicating a reference to an external CSS(Cascading Style Sheet).
|
 |
John Davis
Ranch Hand
Joined: Nov 02, 2000
Posts: 181
|
|
Vijay and Malhar, Thank you very much for the valuable suggestions. I'm going off right now to locate the CSS. JD
|
 |
 |
|
|
subject: class= operation
|
|
|