3,760 Topics

Member Avatar for
Member Avatar for Abinaya Infy

Hi all, I have two questions. 1) How to refresh a page in jsp even if the javascript is not supported by the browser or if it is disabled? 2) How to get the path of the window in js? Thanks in advance.

Member Avatar for Shanti C
0
120
Member Avatar for Web_Sailor

Hi... I am creating an HTML Table in my JSP page taking values from text file. Now the problem comes when I read the file again to update the Table content. In this case I have to refresh my whole page to see updated Table. :icon_cry: How can I refresh …

Member Avatar for Shanti C
0
1K
Member Avatar for amitbhanot

Hi could someone tell me how to write a EJB module in NetBeans IDE/ MyEclipse. i am using NetBeans 6.9.1. not able to figure out what type of project to select from the choices? i am trying to write a Remote interface, a Home interface, Session Bean, ejb-jar and a …

0
61
Member Avatar for himmat.m4

Hi, I making project in struts2 so please tell me how can send some variable from action class to jsp and how those variable get on jsp page. Thanx in advance.

0
40
Member Avatar for fraenckel

I'm setting up a validation xml file for a struts2 based web app. I'm getting an error when the file (CustomerAction-validator.xml) is loaded. At the top of the xml file, I have the following [CODE]<!DOCTYPE validators PUBLIC "-//OpenSymphony Group//XWork Validator 1.0.2//EN" [B]"http://www.opensymphony.com/xwork/xwork-validator-1.0.2.dtd"[/B]>[/CODE] The Tomcat error I get(I can't easily cut …

0
84
Member Avatar for IBANGS

Hi all, pls can dataTable jquery plugin be integrated in struts frame work? I actually want to use this plugin to create rich table in jsp. help me plsssssssssssssss. thanks

Member Avatar for stultuske
-1
54
Member Avatar for rushhour2

Hi all, I am having a little problem with displaying results from a search html form which forwards onto a servlet for processing, then the results are displayed in a jsp web page. The html form contains a [CODE]<select>[/CODE] for a drop down list to select what term to search …

0
86
Member Avatar for prtzy

I am completely new to jsp. I have to design a website prototype for a project on doctor directory search using jsp. It uses database(ms access) to store data like doctor info and all. As i will not be hosting this website online , all the code (client side + …

0
54
Member Avatar for vinit trivedi

dear friends plz ask me website list which contain ready jsp project for download. plz answer me fast its so urgent plz thanks in ADVANCE............(happy new year in ADVANCE alsoooooooo) D.M.Y.K.(dua mei yaad rakhna)

Member Avatar for masijade
-2
79
Member Avatar for nikita.chandra

Hi all, I am creating a dynamic website and i need to use a online chat option. Please tell me if there are any javascript or open source code for that which can be used in Jsp page as i am using jsp and servlet for my website. Please help …

Member Avatar for ~s.o.s~
0
91
Member Avatar for anand01

Dear friends I am beginner to jsp ...I want to upload files to server .. I am using the the following code. saveFile = "C:\\Program Files\\Apache Software Foundation\\Tomcat 5.5\\webapps\\ROOT \\Extrusions\\" + saveFile; FileOutputStream fileOut = new FileOutputStream(saveFile); Now i want to save the file into my server ..what should i …

Member Avatar for ~s.o.s~
0
115
Member Avatar for nikita.chandra

Hi all, I am trying to send email using a java class and gmail mail server given below is the code for this but its not working UnknownHostException found.I have replaced all the email addresses with actual email addresses. [CODE] import javax.mail.*; import javax.mail.internet.*; import java.util.*; public class Mail { …

0
83
Member Avatar for IBANGS

Hi all, please which of the tag libraries, can i used in creating rich table which will display column header, accept data from the user,add new row, delete row and store data in the appropriate database in jsp. thank you

0
50
Member Avatar for anithajerome
Member Avatar for peter_budo
0
63
Member Avatar for ellenski

Hi, We were asked to make a subscription type of form. Details needed are username, password, first name, last name, etc. My problem has something to do with the password validation. when i feel in the password field and the re-type password field, both of them should be checked. If …

Member Avatar for ellenski
0
7K
Member Avatar for aramesh1989

hi I have to use https protocol in my project. But I dont know how to use it thorough servlets plese guide how to use it. I am using Websphere as my application server. How to congigure it for Https

Member Avatar for aramesh1989
0
98
Member Avatar for adobe1

I have this problem it go thus; E=MC~2(change in mass*C square) where E=energy produced(in joule),M=change in mass(in kg),C=speed of light(3.0*10`8ms~1) work of EINSTEIN. I was asked to write a computer program to calculate the energy produce when mass is know. pls help.

Member Avatar for adobe1
0
50
Member Avatar for shrutinr

Hi.. I m haiving problem in retrieving selected data from combobox of servlet page . I have combobox in servlet and want to display selected value in d same page.. please help me to resolve this problem.. Here is my code: [code=java]PrintWriter pw=response.getWriter(); pw.write("<h1>Welcome to Shopping cart</h1>"); pw.write("<form name=myform method=post>"); …

0
64
Member Avatar for sarika15m

dis is my first page regpage.jsp where i am filling all data when i click on submit it calls insertreg.jsp i can see in browser but it doesnt display anythin.Please help me. Thanks, Sarika [code]<%-- Document : index Created on : Nov 4, 2010, 9:32:00 AM Author : sarika.sharma --%> …

Member Avatar for Shanti C
0
74
Member Avatar for nikita.chandra

Hi all, I just wanted to know that which is the best and cost effective web hosting service provider for jsp,servlets and Mysql database. thanks

Member Avatar for peter_budo
0
188
Member Avatar for anithajerome

Can anybody guide me to create a calendar editable by the client by selecting a date in jsp/html

Member Avatar for peter_budo
0
58
Member Avatar for Ambislm

I have 3 combobox in my index.jsp file. I have filled first 2 combobox with data's from database... Now i have to fill 3rd combobox with the values which i have in java file such as: [code=Java]private static String[] types = { "Vehicle Reporting", "Vehicle Revisits", "RO - JDP Count" …

Member Avatar for Ambislm
0
211
Member Avatar for anithajerome
Member Avatar for anithajerome
0
63
Member Avatar for ganeshhsk

The problem that im facing is, the below code is working correctly and retrieve the pdf format files correctly and displaying it in the iframe. but it is only working in eclipse internal browser but not in firefox or internet explorer. what will be the reason for this.... Source code: …

0
49
Member Avatar for newuser17

Hi I am new to JSP, if some could help me in understanding what is wrong in this code [code]<html> <body> <%String newname="hi"; %> <%=request.getParameter("name")%> <input type=text value="<%=newname %>" name="newname"> <% newname=request.getParameter("newname"); out.println(newname); String modifyurl = "delete.jsp?newname="+newname+""; out.println("<td><a href ="+modifyurl+">Modify</a></td></tr><br>"); so when i print newname it always says null... please …

Member Avatar for parry_kulk
0
121
Member Avatar for rajshree13

I want source code for searching the data in our intranet website.. Please give me solution for search the data in JSP Language. Thanks

Member Avatar for peter_budo
0
196
Member Avatar for Dhruv Gairola

this is inside my servlet: [CODE]ArrayList<String> currentCustomer = model.getAllCustomers(); req.setAttribute("currentCustomer", currentCustomer );[/CODE] how do i access this arraylist in my JSP file? I eventually wanna loop over each string element.

Member Avatar for Dhruv Gairola
0
237
Member Avatar for anupam.j2ee

Hello Everybody, I am new into Java Programming. I am having a requirement of showing calendar in my JSP. Foe Example I have a field named 'Start Date' , whenever that field is clicked or is focused a calender should pop up and date chosen on that calendar should be …

Member Avatar for peter_budo
0
100
Member Avatar for spideyprasad

For PHP its MySQL For ASP its SQL server These are default databases. Likewise which db we use for JSP?????????

Member Avatar for peter_budo
0
108
Member Avatar for theo23

i have these 2 selections Code: [code] <select id="rooms" name="rooms"> <option>Please Choose</option> <option value="1" >1</option> <option value="2" >2</option> <option value="3" >3</option> <option value="4" >4</option> </select> <select id="type" name="type"> <option>Please Choose</option> <option>Single - 50£</option> <option>Double - 60£</option> <option>Luxury double - 70£</option> </select>[/code] i would like to give these values single:50 double:60 …

Member Avatar for Shanti C
0
99

The End.