Category: JSP
Posts of Category: JSP
  1. Difference between JSP and Servlet in Java – JSP vs Servlet

    Difference between JSP and Servlet in Java – JSP vs Servlet In this tutorial I will tell you about difference between JSP and Servlet in Java. JSP and Servlet are two technologies in Java which are used to crea...Learn More
    JavaJSPServlet
  2. Online Banking System Project in JSP (Advance Java)

    **Online Banking System Project in JSP (Advance Java)** The Online Banking System Project is developed using technologies JSP (Advance Java) and JavaScript. I have used MySql for database. To run this project y...Learn More
    JavaJSP
  3. JSP Pagination Example Using jQuery, AJAX, JSON and MySQL

    JSP Pagination Example Using jQuery, AJAX, JSON and MySQL In this tutorial you will learn how to implement pagination in JSP. Pagination is a technique of dividing the content into several pages. Fetching all t...Learn More
    JSPjQueryMySqlJsonAjax
  4. Online Quiz System Project in JSP (Java)

    **Online Quiz System Project in JSP (Java)** Here you will get the online quiz system project in JSP (Java). Few days back my college organized a tech fest. There was a coding competition event in that fest. Th...Learn More
    JavaProjectsJSPJSP Project
  5. AJAX with JSP Using jQuery Example

    AJAX with JSP Using jQuery Example Here you will get an example of AJAX with JSP using jQuery. AJAX is used for sending and receiving data from server without reloading the page. We can implement AJAX easily us...Learn More
    JavaScriptJSPjQuery
  6. JSP Login and Logout System Example Using Session

    JSP Login and Logout System Example Using Session In this tutorial you will learn how to make JSP login and logout system using session. I have used MySQL as a database in this example. This system has fol...Learn More
    JSP
  7. MapGuide open source : manipulating SDF data via java/jsp?

    I am relatively new to MapGuide open source technology. I would like to parse and modify data that is in SDF format so that my map displays this updated feature data (dynamically). How can i do so? I have MapGu...Learn More
    JavaJSPSdfmapguide
  8. Issue in passing an xml to jquery script

    I am trying to read an xml from local path using bufferedReader in jsp and trying the pass the xml to a jquery script as below <% StringBuffer xmlStrBuff = new StringBuffer(); Strin...Learn More
    JavaJSPjQuery
  9. How to Ban / Unban IP for failed login attempts

    I want to IP Ban a user if he fails to login 5 times at my website. How do I get someone's IP in Java and then ban it from my site? Currently, my login servlet looks like this. I know the counting system should...Learn More
    JavaJSP
  10. What kind of argument is assigned to 'HTTPServletResponse response'

    I'm trying to understand how the assignment of response.getWriter() happens to PrintWriter. protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {...Learn More
    JavaJSPHTTPTomcatservlets
  11. Unable to submit form from javascript function

    I have a JSP file with struts tags. <html:form action="showcart"> <table width="100%" border="1"> <tr> <td width="46" align="center" valign="middle"&am...Learn More
    JavaScriptJSPstruts-1
  12. Passing Value in Struts 2 from JSP to JSP

    I have the code below in a JSP page. <s:url value="/user/search.jsp" > <s:param name="profile.gender" value="profile.gender"></s:param> </s:url> It l...Learn More
    JSPstruts2