|
-
Feb 7th, 2005, 10:51 AM
#1
JSP equivelant ofASCX?
In ASP.NET, you can make usercontrols, which are basically just repetitive bits of code and html rendering information. Does such a beastie exist in JSP?
A simple example would be a jsp that does nothing but output a table, but you would include that jsp as a tag in another jsp where you would want to use that table
Code:
//table.jsp
<table border="1">
<tr>
<td>
Testing
</td>
</tr>
</table>
//* table.jsp
//someotherpage.jsp
<html>
<sometag src="table.jsp"></sometag>
</html>
//* someotherpage.jsp
Something along those lines, but, you know, that actually works.
Laugh, and the world laughs with you. Cry, and you just water down your vodka.
Take credit, not responsibility
-
Feb 7th, 2005, 11:11 AM
#2
Re: JSP equivelant ofASCX?
Not familiar with it, but I think Java Server Faces is what you want.
http://java.sun.com/j2ee/javaserverfaces/
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Feb 7th, 2005, 11:47 AM
#3
Re: JSP equivelant ofASCX?
Fantabulous
Laugh, and the world laughs with you. Cry, and you just water down your vodka.
Take credit, not responsibility
-
Feb 7th, 2005, 02:53 PM
#4
Dazed Member
Re: JSP equivelant ofASCX?
Yes JSF is what you want. You will find when using JSF you will be writing a lot less code which is always a good thing.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|