Learn More About This
Directory
Sponsored by Synergium.net,
Software Development Services with a Forward Thinking Approach
1. Java, XML, C++, programming, engineering and consulting
- www.synergium.net
- JSP, JSTL.
- These are our focus areas: J2EE, J2SE, J2ME, Java Software Engineering, JSP, JSTL, Jakarta Struts, PHP, C++,. ...
- Design of forms with high quality intuitive web based user interfaces using HTML, JSP, EL (Expression Language) and JSTL custom tags. ... Model View Controller (MVC) design pattern, development of user interface in JSP and back end logic in Java Servlet and Java Beans. ...
2. JSP Kitabı Websitesi
- www.pusula.com
- JSP JavaServer Pages DHTML Dynamic HTML Dinamik HTML türkçe jsp kitabı jsp kitap pusula yayıncılık jsp scriptler HTML CSS Cascading Style Sheets style guide code conventions javascript numan pekgöz web design web developing numan pekgoz Web tasarım web programcılığı web kitapları .
3. JSP Tag Libraries
- www.manning.com
- JSP Tag Libraries.
- JSP Tag Libraries.
- JSP Tag Libraries is a bible for serious JSP developers. The reader will become acquainted with the world of custom JSP tags--new JSP technology that is beginning to have an enormous impact on the way people are developing JSP. ...
- JSP tags are Java components that can be used from within a JSP file. By representing these components as tags, code authors can open up their JSP development to the everyday content developer as well as improve their code reuse and separation between presentation and business logic. ...
- This book covers all aspects of JSP Tag development for Scriptlet-free generation of online content. ...
- JSP Tag Libraries includes the following: .
- Working with Java beans from within custom JSP tags .
- Performing conditions with custom JSP tags .
- Iterating with custom JSP tags .
- Database access custom JSP tags .
- J2EE integration and custom JSP tags .
- Translation rights for JSP Tag Libraries have been granted for Brazil, Korea, and Japan. ...
- Commerce, Magnus entered the server/jsp arena and became devoted to J2EE application development. He also participates in the Sun Java expert groups for JSP 1. ...
4. TECFA's JSP Page (22-Dec-1999)
- tecfa.unige.ch
- CSS | Design | DOM | Emacs | Flash | Games | Html | Java | Js | JSP | Ldap | Methodo | Moo | MySql | Project Mgmt | Php | Portals | RDF | Misc. Soft | SVG | TIE-slides | Unix | Vrml | Xml | Xml/Contents | Xml/Cocoon | Xml/XSLT | InfoViz | Admin | TECFA's JSP Page .
- This is page is totally outdated (last update nov 2000) and for the moment no longer maintained !! Keywords: JSP, Java .
- Related Pages: JAVA Page XML Page (JSP/XML libraries), MySQL page (JDBC libraries) Contents.
- JSP @ TECFA.
- 1 JSP Teaching at Tecfa § 1. 2 JSP Projects at Tecfa § 1. 3 JSP Environments at Tecfa .
- JSP @ TECFA.
- JSP @ TECFA .
- 1 JSP Teaching at Tecfa .
- JSP was part of Staf 2x Programming Workshop .
- 2 JSP Projects at Tecfa .
- 3 JSP Environments at Tecfa .
- JSP @ TECFA.
- JSP uses plain JAVA !! .
5. JspDoc: documenting JSP made simple
- jspdoc.sourceforge.net
- Documenting JSP made simple.
- 'JspDoc' targets Administrators and Jsp Developers and allow them to .
- Implement a standard 'documentation' for Jsp .
- Browse on-line the documentation of a Jsp collection .
- Understand the Jsp structure and learn about them or debug them .
- There is no standard tools to document a jsp collection analogous to Javadoc for java packages. We had to develop a set of presentation jsp and java classes documenting jsp providing .
- A classified view of the jsp directory of an application server, including summary and categorization of each file (sample).
- jsp .
- A detailed view for any jsp file including a documentation section (embedded inside the jsp relying on our proposed standard) and summarizing the main elements of a jsp (directives, taglib tags, java objects declaration ) (sample).
- jsp .
- A rendering of the final layout, where all the html is 'as in the final page' but all jsp processing instructions rendered as embedded html text (sample).
- jsp .
- We also provide a 'classic' to 'xml' converter for those who wants to transform jsp in the new or the old format. ...
- Those features are implemented with 3 jsps and a set of Java classes supporting jsp parsing and some data processing to simplify the jsp presentation task (selecting and sorting). ...
- The benefit of such an approach is that the jsp is the unique source of information not only for processing of course but also for documenting what services are provided (a jsp becomes a self documenting unit). As with javadoc, this system has the intelligence of what the Jsp structure is and tells a lot without verbose over documentation by the jsp programmer: the documentation section should really be a functional description of the service provided by the jsp, jspDoc complements it providing intelligent information about all the different elements processed by the jsp: what are the directives used, what are the beans or taglibs entries used, what are the Java objects and the methods called (either in scriptlet or expressions) .
6. JSP Tutorial
- www.jsptut.com
- JSP Tutorial .
- JSP 1. 1 introduces a method of extending JSP tags, called "tag libraries". These libraries allow addition of tags similar to jsp:include or jsp:forward, but with different prefixes other than jsp: and with additional features. ...
- jsp file, we will now add a jsp:useBean and place the form inside blx:getProperty. ...
- jsp is <%@ taglib prefix="blx" uri="/blx. tld" %> <jsp:useBean id="user" class="UserData" scope="session"/> <HTML> <BODY> <blx:getProperty name="user" property="*"> <FORM METHOD=POST ACTION="SaveName. jsp"> What's your name? <INPUT TYPE=TEXT NAME=username SIZE=20><BR> What's your e-mail address? <INPUT TYPE=TEXT NAME=email SIZE=20><BR> What's your age? <INPUT TYPE=TEXT NAME=age SIZE=4> <P><INPUT TYPE=SUBMIT> </FORM> </blx:getProperty> </BODY> </HTML> Note that the blx:getProperty doesn't end with /> but is instead terminated by a separate </blx:getProperty> line. ...
- jsp from the NextPage. jsp, and you will see that the bean's data shows up automatically in the input fields. ...
- jsp that processes any errors, and either shows the user GetName. jsp again to user can enter the data correctly, or automatically forwards to NextPage. jsp. ... " ); } %> <% // Variables must be initialized outside declaration! haveError = false; errors = null; %> <HTML> <BODY> <jsp:useBean id="user" class="UserData" scope="session"/> <blx:setProperty name="user" property="*" onError="errorHandler"/> <% if ( haveError ) { out. ... jsp" ); } else pageContext. ... jsp" ); %> </BODY> </HTML> Note that haveError and errors must be re-initialized each time, therefore they are being initialized outside of the declaration. ...
7. JSP Insider - Online resource for JavaServer Pages (JSP), Servlets, and J2EE
- www.jspinsider.com
- JSP Insider.
- Your good, free JSP and Servlet resource.
- News - Articles/Tutorials/Code/Reviews - JSP/Servlet Hosting Companies - Links.
- Welcome to JSP Insider, an on-line resource for JavaServer Pages, Servlets, and various other J2EE topics. ...
- JSP 2. ...
- JSP 2. ... 4 (JSR 154) are now final! Not much has changed from the proposed final draft specifications, but you can now look forward to products that officially support JSP 2. ... If you are looking for a good JSP 2. ...
- Sitepoint Highlights JSP and J2EE - Wed Nov 12 16:12:05 CST 2003.
- Now Java is about to turn 10, and SitePoint is celebrating with new Java, JSP and J2EE articles every day this week! Not only will we help you get started -- we'll show you some of the more advanced ways to use Java in your Web projects, including Enterprise JavaBeans, Apache Struts, and more.
- About once a week I'm asked if source-code from content authored by JSP Insider authors and published on JSP Insider is available for use commercially. ...
- JSP the Short Course is no longer available on JSP Insider. The tutorial provided an introduction to JavaServer Pages and demonstrated how to use JDBC with JSP. ...
- Servlets and JSP; the J2EE Web Tier - Tue Oct 07 12:27:05 CDT 2003.
- This book aims to be the definitive book on Servlets and JSP. Not only does it cover the absolute latest technologies, but the authors cover countless tips, techniques, and philosophies for building Web Applications using Servlets, JSP, and JDBC.
8. JSP Java Server Pages
- www.24horaswebhostingsoporte.com
- La idea básicamente es la misma que se aplica a las páginas JSP, con la salvedad que siempre caracteriza a Microsoft, que tiene que ver con que solamente funciona bajo plataformas Microsoft .
- JSP - Lo nuevo .
- Con JSP se programa dentro de las páginas con código de JAVA, pero encerrando el código en un conjunto de marcas que sólo se interpretan en el servidor, al momento de ejecutar la aplicación. ...
- El modelo de uso de JSP se basa en la reutilización de componentes Java Beans. ...
- Pues bien, veamos en esta sección cómo luce el código JSP dentro de una página. ...
- JSP. ...
- <jsp:useBean id=="clock" class=="calendar. ...
- Respecto a la forma en que el servidor resuelve el uso de JSP, es muy sencillo. ...
- JSP para ser quien aporte la portabilidad deseada en ASP de Microsoft y eventualmente se torne tan popular como éste. Asimismo, desde ya se está notando un uso incremental de JSP por parte de diferentes empresas que necesitan dinamismo y velocidad en sus sitios, sin tener que depender de un solo proveedor.
- Comparando JSP con ASP .
- JSP y ASP sirven para hacer, más o menos, el mismo tipo de aplicaciones web. ... Después de mi experiencia en el trabajo con JSP, un día un cliente me preguntó por qué no programaba la página en ASP en lugar de JSP, ya que había oido hablar que el sistema de Microsoft tenía unas características muy apropiadas para su modelo de negocio. A partir de esta sugerencia, y para que mi cliente quedase satisfecho con la tecnología JSP -que es la que prefiero utilizar-, preparé una lista de ventajas de utilizar páginas dinámicas Java frente a las de Microsoft. ...
- JSP sigue la filosofía de la arquitectura JAVA de "escribe una vez ejecuta donde quieras". ...
- Así, JSP se puede ejecutar en los sistemas operativos y servidores web más populares, como por ejemplo Apache, Netscape o Microsoft IIS. ...
9. Cetus Links: 19,498 Links on Objects and Components / JavaServer Pages (JSP)
- www.cetus-links.org
- Internet & Intranets: JavaServer Pages (JSP).
- What is JavaServer Pages technology? JavaServer Pages (JSP) technology provides a simplified, fast way to create web pages that display dynamically-generated content. The JSP specification, developed through an industry-wide initiative led by Sun Microsystems, defines the interaction between the server and the JSP technology-based page, and describes the format and syntax of the page. ...
- How does the JavaServer Pages technology work? JSP technology-based pages use XML tags and scriptlets written in the Java programming language to encapsulate the logic that generates the content for the page. ... In this way, JSP technology-based pages separate the page logic from its design and display. ...
- JSP technology is part of the Java technology family; it uses a Java programming language-based scripting language, and JSP technology-based pages are compiled into servlets. JSP technology-based pages may call JavaBeans technology-based components (beans) or Enterprise JavaBeans technology-based components (enterprise beans) to perform processing on the server. As such, JSP technology is a key component in a highly scalable architecture for web-based applications. ...
- JSP Editors .
- JavaServer Pages Archive (JSP-Interest. ...
- JSP Resources (JSPTags. ...
- The JSP Resource Index (JSPin. ...
- The JSP Resource (The esperanto Group) .
- JSP Insider (JSPInsider. ...
- JSP (Open Directory) .
- Building Your Own JSP Components (iPlanet) .
10. Essential JSP (JavaServer Pages) and Servlet Programming Resources
- resources.corejsp.com
- JSP and Servlet Programming Resources.
- Programming with Servlet and JSP Technology.
- Advanced JSP, Servlets, and Apache Struts.
- Tutorial on setting up Tomcat for desktop development of servlets and JSP. ...
- The official specifications for JSP, servlets, and related technologies such as JSTL, Struts, EJB, and J2EE. ...
- Servers or engines that support JSP, servlets, or all of J2EE. ...
- HTML-oriented development environments that support JSP. ...
- JSP and servlet training courses, taught at public venues or on-site at your organization by the author of the best-selling Sun Press servlet & JSP books. ...
- Books on JSP, servlets, EJB/J2EE, and related technologies. ...
- Commercial ISPs that will host sites that run JSP, servlets, and (in some cases) full J2EE. ...
- Servlet and JSP Training Courses. Taught by the author of Core Servlets & JSP and More Servlets & JSP. ...
- Intermediate JSP & Servlet Training Course. Server setup, cookies, session tracking, handling HTTP headers, JSP scripting elements, using beans in JSP, the MVC architecture, the JSP 2. ...
- Advanced JSP, Servlet, and Struts Training Course. Programmatic and declarative security, filters, advanced custom tags, JSP 2. ...
11. JSP Tutorial
- www.jsptut.com
- JSP Tutorial .
- This tutorial teaches JSP by progressing from very simple examples to complex examples. ...
- Getting familiar with your JSP server .
- Your first JSP .
- First step: Getting familiar with your JSP server .
12. Sun's JSP spec adds dynamic punch to application servers (InfoWorld)
- www.infoworld.com
- Sun's JSP spec adds dynamic punch to application servers .
- Java application servers received a standardized way to deliver dynamic Web content Wednesday when Sun Microsystems unveiled the JavaServer Pages (JSP) specification. ...
- JSP, a key function of the Java2 Enterprise Edition (J2EE) platform to be officially unveiled June 15 at the JavaOne conference in San Francisco, allows developers to more easily create dynamic and componentized server-generated Web pages that can assemble content from various sources, Sun said. ...
- JSP gives developers a simplified and more efficient way than servlets or CGI-type scripting to serve up Web pages that assemble content from a variety of enterprise data sources using standardized tools and running on standardized servers. ...
- Now, using JSP, the applications written to the specification can be run on servers that support JSP, as well as on HTTP engines such as Apache, Netscape, and Microsoft IIS that have had Java services support added. ...
- JSP allows a more integrated way to build Web sites with dynamic content," said Anne Thomas, analyst at the Patricia Seybold Group in Boston. ...
- JSP also provides a cross-platform alternative to Microsoft's Active Server Pages technology, which runs on Windows NT and IIS only and requires third-party connectivity tools such as ChiliSoft to be run on other Web servers. JSP technology is expected to quickly make its way to the Unix, AS/400, and mainframe platforms. ...
- IBM, Persistence, Bluestone, WebLogic, Gemstone, and Forte on Wednesday said they will build support for JSP into their respective Web application servers. ...
- Tools makers such as Symantec, Inprise, Macromedia, NetObjects, Gefion, Halcyon, and LiveSoftware are expected to benefit from JSP because their tool sets will generate applications that work among Java servers without negotiating proprietary APIs, analysts said. ...
- The delivery by Sun of the JSP specification comes just a few weeks after the public draft of the Enterprise JavaBeans (EJB) 1. ... Both JSP and EJB form foundations, along with CORBA and XML, to allow for wider "write once, run anywhere" Java functionality, Sun said. ...
- The benefits to Internet commerce come because JSP can generate interactive, viewer-specific information, Sun said. ...
- The JSP technology -- written by many vendors under the auspices of Sun's Java development programs -- is available now for free download, along with an early access reference implementation, through the Java Developer Connection at java. ... com/products/jsp. ...
13. JSP
- www.olagam.com
- JSP.
- jsp hosting.
- jsp tutorial.
- jsp web hosting.
- cv java job jsp not resume resume submit title title title url vitae.
- jsp editor.
- jsp spoiler.
- jsp example.
- jsp include.
- jsp file.
- cv java job jsp resume resume vitae.
- jsp wings.
- forward jsp.
- class compile jsp org. ...
- asp jsp.
- jsp record.
14. JSP
- www.guiastematicas.net
- JSP.
- com:JSP .
- org:JSP .
- com:JSP .
- com:JSP .
- com:JSP .
- com:JSP .
- JSP TOOLS .
15. JavaServer Pages Technology - Documentation
- java.sun.com
- Developers Home > Products & Technologies > Java Technology > J2EE > JSP > Reference > .
- These are quick reference cards and guides for JSP 1. ...
- 4 SDK (JSP 2. ...
- 3 (JSP 2. ...
- The J2EE Tutorial for the Sun ONE Platform (JSP 1. ...
- 3 SDK (JSP 1. ...
- Developing XML Solutions with JSP Technology (PDF), a white paper that describes how to integrate XML data sources and support XML clients. ...
- More JSP best practices, JavaWorld, July 2003 .
- Call JavaBean methods from JSP 2. ...
- Creating Richer Hyperlinks with JSP Custom Tags, OnJava, April 2003 .
- A Custom JSP Tag Library for Dynamic Menus, OnJava, April 2003 .
- JSP Standard Tag Library Eases Webpage Development, JavaWorld, February 2003 .
- Publish event-driven Web content with JSP custom tags, JavaWorld, April 2002 .
- JSP best practices, JavaWorld, November 2001 .
- Email Web Application Using JSP Tag Libraries, java. ...
- Web Application Development with JSP and XML, Part II: JSP with XML in mind, java. ...
16. JSP-INTEREST archives - May 2000
- archives.java.sun.com
- JSP-INTEREST archives – May 2000.
- Back to main JSP-INTEREST page.
- Join or leave JSP-INTEREST.
- "signoff JSP-INTEREST" (2 messages) .
- (jsp and jbuilder).
- 2 beans in jsp page.
- <jsp:getProperty> (6 messages) .
- <jsp:include>.
- <jsp:include> and <jsp:param> does not work. ...
- <jsp:include>, <jsp:forward> and URL rewriting.
- A Problem with JSP. ...
- A question about JSP and XML (2 messages) .
- a question regarding running JSP on JRun (2 messages) .
- About JSP Webserevr (3 messages) .
- Accessing Classes from a JSP that have already been instantiated.
- JSP (3 messages) .
17. Browser Based WYSIWYG HTML Editor for JavaServer Pages JSP J2EE HTML Editor Microsoft DHTML Editing Control MSHTML.
- www.cfdev.com
- Tool For JSP / J2EE .
- Pricing starts at just $100 ActivEdit Web Site Content Management Tool For Java Server Pages (JSP).
- JSP Technical Documentation - ActivEdit Documentation for JavaServer Pages.
18. ProgrammerTutorials.com - solutions to programmer problems!
- www.programmertutorials.com
- JSP Tutorials.
- JSP Fundamentals.
- A good beginner's tutorial that teaches all of the basics you will need to get started with programming with JSP's.
- JSP Tutorial.
- JSP tutorial for beginners to JSP technology.
- Sun's quickstart JSP tutorial.
- Sun's tutorial for Java Server Pages that provide a good introduction to design web pages with JSP.
- Servlets and JavaServer Pages (JSP) 1. ...
- A guide to servlet and JSP programming.
- In this article I'll introduce what is JSP and why at all do we need to learn it. Then I'll move on to describe the installation of open source Servlet Container / JSP Engine, Tomcat. Once done, I'll explain the steps of running your first JSP page. Note that I am not going to describe the structure of a JSP page and what are the different features of JSP, I'll write a separate article on that.
- The JSP Files.
- This first part explains the history and basics of JSP documents, and also illustrates variables, includes and the String object.
- Introduction to Servlets, JSP, and Servlet Engines.
19. Freewarejava.com JSP and Servlets
- freewarejava.com
- Main Menu JSP and Servlets.
- Java Servlets and JSP- An Overview.
- 2 and JavaServer Pages (JSP) version 1. ...
- com intro to JSP.
- A great introductory tutorial on JSP and setting up the JSP environment on the computer.
- My very first JSP application.
- This tutorial gently introduces the complete JSP beginner to the technology. ...
- The Israeli Guide to JSP.
- A good introduction to JSP programming.
- Using XML and JSP together.
- XML and JSP are two of the hottest buzzwords these days. ...
- JSP custom libraries.
- JavaServer Pages (JSP) technology is an excellent architecture for delivering Web applications, but one of its most important facilities, custom tag libraries, is often poorly leveraged. ...
- This component could be integrated in any JSP/Servlets application.
20. JSP Tutorials, Code Examples & Articles - Technology Tutorials, Code Examples & Tutorials: TrooBloo.com
- www.troobloo.com
- JSP Tutorials, Code Examples & Articles.
- General Java, Applets, J2ME, JavaBeans, JavaScript, JDBC, Jini, JSP, Servlets, Swing.
- There are 71 articles & tutorials regarding "JSP". ...
- by Tom Reilly The release of Java Server Pages (JSP) 1. 0 represents an important step forward for JSP technology. JRun has supported JSP for one and a half years. Until now, however, the JSP specifications were drafts that lacked clarity and completeness. With JSP 1. 0, Sun placed the full weight of its community API development process behind JSP to produce a solid specification that will radically speed industry adoption of JSP. ...
- ) Speeding JSP Development Using HomeSite.
- HomeSite is one of the most popular Web site development tools available today; however, it does not provide integrated support for Java Server Pages (JSP) 1. This article describes the steps for combining the features of HomeSite and JRun and to create a JSP Integrated Development Environment (IDE). Using JRun to View JSP within HomeSite One of the most helpful features of HomeSite is the ability to quickly preview an HTML page as it would be displayed by a user's browser. ...
- ) Accelerating JSP Tag Development with Jakarta Velocity.
- by Gregory Gerard 05/01/2002 Writing JSP tags can be tedious, even under the best of circumstances. ... While you might assert that this is precisely the purpose of Java Server Pages, with its directive for including JSPs through the <jsp:include. ...
21. coreservlets.com: JSP & servlet training, consulting, and books
- www.coreservlets.com
- JSP, Servlet & Struts.
- JSP/Servlet/Struts Training JSP/Servlet Books.
- JSP/Servlet Consulting JSP/Servlet/Struts Programming Resources.
- JSP/Servlet Training Course Materials Free online version of Core Servlets & JSP, 1st Edition.
- Programming with Servlet and JSP Technology.
- Advanced JSP, Servlets, and Apache Struts.
- JSP, Servlet, and Struts Training.
- JSP & servlet training courses personally developed and taught by Marty Hall, experienced developer, award-winning instructor, and author of the best-selling servlet, JSP, and Java programming books from Prentice Hall and Sun Microsystems Press. ...
- Custom JSP, Servlet, and Struts Courses. ... You can have the intermediate JSP & servlet course, the advanced JSP & servlet course, the Apache Struts course, the Java programming course, or a customized combination of the courses. ...
- Intermediate JSP and Servlet Courses. Intermediate-level training courses based on Marty's brand-new second edition of Core Servlets & JSP. For those who know basic Java but not servlets & JSP. Form processing, HTTP headers, cookies, session tracking, JSP scripting elements, JavaBeans in JSP, MVC, JDBC, the JSP 2. ... For details, see the JSP training course homepage. ...
- Advanced JSP, Servlet, and Struts Courses. Advanced training courses based on Marty's book More Servlets & JSP. For those with moderate to significant servlet & JSP experience. Custom tags ("classic" and JSP-2. 0-style), declarative and programmatic Web security, filters, listeners, the JSP Standard Tag Library (JSTL), Apache Struts, and more. ... For details, see the advanced JSP, servlet, and Struts training course homepage. ...
Other
pages with similar relevance:
22. JSP Courses: Classroom Based JSP Training and Education
- www.jsp-training-courses.co.uk
- JSP Training Courses.
- jsp-training-courses. ...
- Email: info@jsp-training-courses. ...
- JSP CBT Courses.
- JSP Books.
- Mastering JSP Course.
- JSP Courses.
- JSP Training Courses.
- Mastering JSP Course.
- This website contains information on PTR's JSP training courses. ...
- Use the navigation links on the left or in the table above to find more information on the appropriate JSP training courses. JSP Training Courses are held at our Training Centre in Wokingham, Berkshire, offering easy access from M3 and M4 motorways, and from both the Paddington and Waterloo railway lines. We can also offer the JSP Courses as closed courses, or on customer sites if preferred - simply complete the form by clicking the "Request Info" link above. ...
23. BoxSource Network :: JSP Tutorials
- tutorials.boxsource.net
- JSP tutorial - by jsptut. ...
- This tutorial teaches JSP by progressing from very simple examples to complex examples.
- Struts is an open source framework useful in building web applications with Java Servlet and JavaServer Pages (JSP) technology. ...
- Result Page: 1 Add a Tutorial to this Category JSP Tutorials on: alltheweb | google | lycos .
- Join us to Take back the Net! JSP Discussion Board.
24. Understanding the New Features of JSP 2.0
- otn.oracle.com
- Tutorial: Understanding the New Features of JSP 2. ...
- Understanding the New Features of JSP 2. ...
- JSP 2. 0 is an upgrade to JSP 1. ... The objective of JSP 2. 0 is to make JSP easier to use than ever, and more importantly to be used without having to learn the Java programming language itself. This tutorial is aimed at helping you understand some of the new features of JSP 2. ... Specifically, we will be looking at the following features - the Simple Expression Language (EL), JSP Fragments, Tag files and Simple Tag handlers.
- JSP Fragments.
25. JSP Quick-Start Guide for Windows
- www.sitepoint.com
- JSP Quick-Start Guide for Windows.
- JavaServer Pages (JSP) is a server-side technology that allows developers to create Web-based applications that can make use of components that are developed in the Java programming language, according to the JavaBeans specification. ... JSP is similar to PHP in the C-style syntax of the Java language, but JSP was also designed to be extendable using components like ASP.
- When it comes right down to it, however, JSP is a technology like no other. Extremely fast, platform independent, highly scaleable with built-in support for distributed processing, compatible with all major Web servers, and FREE for most uses, one might wonder why JSP isn't used more than it is.
- To take full advantage of JSP, a developer must first be comfortable working in the Java programming language. ...
- Setting up a server environment to develop and test JSPs can be a confusing task, especially since most of the documents written to guide users through the process are steeped in technical mumbo jumbo that assumes you already know JSP inside and out. ...
- In this article, I'll attempt to remedy the latter point by guiding you through the process of setting up a JSP-enabled Web server on a Windows PC. Hopefully, this will give you the head start you need to jump into the world of JSP development. I'll take you as far as getting a basic JSP page working on your server, and then you can dive into our JSP article series, The JSP Files fully equipped!.
Other related topics:
Do you have a great site about JSP? Is
your JSP site listed here?
Would you like a prefered placement of your site in this directory?
It's easy! First place, the HTML from the box below on your page that
you would like listed in this directory.
Then use our link submission request with
your name, your contact information, and the URL of your site that has
a link to this directory. After we
verify your link to us, we'll make sure your site stays in our directory,
and we'll give it prefered placement here also.
Here is how to make a simple text link to us. Just copy the code in this
box to your website:
We can also develop a custom Guide To The Internet for your site. Please
request your own
custom Guide To The Internet.
This custom Guide To The Internet produced by
Siql, and is licensed for the exclusive use of Synergium.net. To get your site listed here, please contact Synergium.net.
Copyright 1995-2004 by Siql. All
Rights Reserved.