grab our rss feed  Follow us on twitter

s2sgateway

Practical Learning of Programming languages such us j2ee,java,jsp

Subscribe now for latest updates

  Powered by FeedBurner

Entries for the ‘Jsp’ Category

shopping cart in jsp&java

ShareHai readers today i am going to give coding to create a simple shopping cart using java in jsp.This shopping cart is simple and get the values from an java file you can extend it to get the data from database file. Lets first create the basic design file store.jsp Then the processing file is [...]

Leave a Comment

Redirect page using jsp to another page

ShareHow to redirect a page to another page with in jsp when some conditions are satisfied In this example first create a html page(login.html) with two boxes username and password if login is correct it redirect to somepage.jsp if password is wrong it return back to login page Note:Create database “s2sgateway” in mysql as i [...]

Leave a Comment

JSF example application to run in eclipse

Share

Leave a Comment

Login form authentication using Struts with database

Share

Comments (2)

Pagination in sturts using Displaytags

ShareToday We are going to learn about How to do Pagination in sturts using Displaytags .As all you know Struts is a MVC Architecture.So that It is easy for us to develop and maintain webapplications.The advantage of java community is the jar files it contains needed tasks combined in a file so that we can [...]

Comments (1)

How to import a war file in to eclipse

Share

Comments (2)

Getting number of rows in jsp page

Share

Leave a Comment

How to authenticate in a webapplication using jsp and servlet

Share

Comments (2)

update using parameters in jsp page

Share

Comments (1)

simple update query in jsp page

Share

Leave a Comment

Display database value in jsp page

Share

Leave a Comment

How to extract war file in java

Share

Leave a Comment

how to import a csv file values in to database using jsp

Share

Comments (4)

Display combo box value/Database value on same JSP page

ShareToday we are going to learn how to Display combo box value/Database value on same JSP page Here we are getting values from a combo box and check it with the database and display the values in the same jsp page. First create the table create table Result(year varchar(20),class varchar(20),Subject varchar(20 ),total_students varchar(20),passout_students varchar(20),marks_obtained_60_to_8 0varchar(20),marks_obtained_above_80 [...]

Leave a Comment

Solving the c:\fakepath problem/upload problem easily

ShareThere is a situation when you want to get the string that is returned by the value attribute of a file upload input <input type=”file” name=”upload”/> under Internet Explorer 8?But the desired full path is not passing in the parameters only name of the file is passing,When you put a simple javascript ie onclick the [...]

Comments (2)