I am going to create an admin module as part of a web site, where administrators can select certain pages of the web site and modify certain sections of the page.
I am thinking of the following approaches, but what do you think?:
1) Server Side Includes
2) Java and XML
3) Using Frames to display the customizable text which is saved as an HTML / TXT file.
Any ideas? Has anybody done something similar?
Alejandro
-
Advice needed to create a Customizable html page with JSPs. (6 messages)
- Posted by: Alejandro Ramirez
- Posted on: August 20 2003 12:40 EDT
Threaded Messages (6)
- Advice needed to create a Customizable html page with JSPs. by Ian Mitchell on August 20 2003 14:29 EDT
- Advice needed to create a Customizable html page with JSPs. by vincent cobra on August 20 2003 16:15 EDT
-
JSF or another framework by Alejandro Ramirez on August 21 2003 09:54 EDT
-
JSF or another framework by Ian Mitchell on August 21 2003 10:59 EDT
- Thanks! by Alejandro Ramirez on August 21 2003 04:47 EDT
-
JSF or another framework by Ian Mitchell on August 21 2003 10:59 EDT
-
JSF or another framework by Alejandro Ramirez on August 21 2003 09:54 EDT
- Include Directive or Action in JSP by Alejandro Ramirez on August 21 2003 09:41 EDT
- Advice needed to create a Customizable html page with JSPs. by vincent cobra on August 20 2003 16:15 EDT
-
Advice needed to create a Customizable html page with JSPs.[ Go to top ]
- Posted by: Ian Mitchell
- Posted on: August 20 2003 14:29 EDT
- in response to Alejandro Ramirez
SSI is generally OK for small pieces of dynamic content. How about using the include directive or action in a JSP? -
Advice needed to create a Customizable html page with JSPs.[ Go to top ]
- Posted by: vincent cobra
- Posted on: August 20 2003 16:15 EDT
- in response to Ian Mitchell
What about jsf or using another framework? -
JSF or another framework[ Go to top ]
- Posted by: Alejandro Ramirez
- Posted on: August 21 2003 09:54 EDT
- in response to vincent cobra
JSF sounds really interesting.
Have you worked with it? Have you worked with Struts?
I need 2 components:
1) An admin page that modifies the content. (write to file functionality -either a file that is called from a JSP page with an INCLUDE, or directly write to editable sections of a web page- I would prefer the last approach).
2) A web page that displays the content.
Alejandro -
JSF or another framework[ Go to top ]
- Posted by: Ian Mitchell
- Posted on: August 21 2003 10:59 EDT
- in response to Alejandro Ramirez
Include action versus directive:
http://spdoc.cineca.it/oracle8i/java.817/a83726/keydev1.htm#1015959 -
Thanks![ Go to top ]
- Posted by: Alejandro Ramirez
- Posted on: August 21 2003 16:47 EDT
- in response to Ian Mitchell
I will try it .
Alejandro -
Include Directive or Action in JSP[ Go to top ]
- Posted by: Alejandro Ramirez
- Posted on: August 21 2003 09:41 EDT
- in response to Ian Mitchell
The directive sounds interesting.
So basically, I will just need to provide a way to save the modified contents in that external file from the Admin module, and just load it with the include on the JSP page for the end-users, right?
Now , what is the difference between using:
<%@ include file="relativeURL" %>
and
<jsp:include>
Alejandro