Hi, I created a java class (userInfo) and placed in a path called class com.stardeveloper.bean.test I have called that as javaBean in my JSP file. it is giving...
Hi, I am working on an application in JSP and want to send automatic reminder-emails to its members by the system. The scenario for my question is, There are...
I was going through various sites for jsp projects. One of my friend suggested me to go to yahoo groups and ask for help. I found ur site. I need some jsp...
Good news for Java learners, job seekers, certification exam takers, employee training managers, and US school applicants / current students! A Professor of...
Hi, I have a situation. I have an html page which contains a menu. The menu calls' direction in JavaScript (JS) file. I am calling a JSP file from that menu....
String zip; zip = request.getParameter("zip"); ... __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design...
Access2PDF is the software solution for developers looking for an easy way to include reports with their web based applications. http://www.access2pdf.com For...
Hi All, We are a Leading Resource Consultant catering to various MNCs in India and Abroad. We are looking for Our CMM Level 5 Client in Chennai(Only Chennai ...
Good news for Java learners, job seekers, certification exam takers, employee training managers, and US school applicants / current students! A Professor of...
Struts professionals are required for a overseas project immdediately. Candidates residing within Mumbai need only apply. inttresetd candidates can send their...
Hey Guys, This is Samiksha from JobsDomain. we are recruiting manpower on Contract basis for one of our clients. the location is Noida. Desired skill-set is...
Hello, I have a master data maintenence jsp page which populates the data and has the "Edit", "Delete" links. After I delete/edit and save the changes to...
Instead of doing a sort-of manual refresh by the browser, a better way would be to set the expiration date for the page in the past so that the browser...
HI, I am defining the following variable in a JSP program. <%@ page import="java.lang.*" %> <%@ page import="java.lang.Float.*" %> <% Float v_float = (float)...
... I'm not quite sure why you're importing stuff from java.lang. That package is part of the core language and is always included whenever you write any Java...
I have a JSP page in which takes in information from a form (seven fields) I then parse them into an XML document. How can I get read the XML information again...
One way I like to do it is to have a XSL stylesheet that can convert XML into HTML. It'll do all the formatting like the , <, >, and <br> tags....
Hi Dustin, Thanks again for the advice...I am having trouble with the regular expression thing...is there a special package that I need to import to get this...
Well, if you're using jdk 1.4 and later, then the regular expressions should be built in. But I'm not sure what package to import. When you're using...
Hi Dustin, Thanks for the advice...it turns out the problem I had was that I had an = instead of using a == for checking... Thanks again for your help, Andrew...
Hi everyone, I need to combine two XML document into one using a DOM... One XML document is already created by using forms another is imported. I have to add...
Hi all, To give you an idea of how I am struggling... this is a bit of the code I did... Node node = documentImported.getFirstChild(); //pass the node around ...
you have to make a form: <form name='fetching' action='fetch.jsp' method='post'> <input type='hidden' value=24> </form> <script> fetching.submit(); </script> ...
JLEVIAGU@...
Oct 15, 2003 3:11 pm
487
Hi everyone, I have a little problem of getting an attribute... I have a root element. and I create a node list by using getChildNodes(); i then get the first...
Hello I want to store current date in a variable and use it. How can I do it? Language is Java (using in JSP). I would appriciate for the answer. Thanks, ...
Hello, I am passing a variable from one jsp page to other. process.jsp?value=2.45 I am receiving it using request.getParameter("value"); But this is a value...