Results 1 to 4 of 4

Thread: JSP equivelant ofASCX?

  1. #1

    Thread Starter
    The Devil crptcblade's Avatar
    Join Date
    Aug 2000
    Location
    Quetzalshacatenango
    Posts
    9,091

    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

  2. #2
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594

    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.

  3. #3

    Thread Starter
    The Devil crptcblade's Avatar
    Join Date
    Aug 2000
    Location
    Quetzalshacatenango
    Posts
    9,091

    Re: JSP equivelant ofASCX?

    Fantabulous

    Laugh, and the world laughs with you. Cry, and you just water down your vodka.


    Take credit, not responsibility

  4. #4
    Dazed Member
    Join Date
    Oct 1999
    Location
    Ridgefield Park, NJ
    Posts
    3,418

    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
  •  



Click Here to Expand Forum to Full Width