3,760 Topics

Member Avatar for
Member Avatar for vish_1x1

Hello everyone, I want to know how to add menu's in my jsp page. Can any1 please provide me with a sample code, regarding the same. Also tell me how to make my logo transparent, it is blocking my background image. Please help.

Member Avatar for masijade
0
124
Member Avatar for shijunair

hi everyone, I am facing a problem which i know that you'll will surely find a remedy. I have a login.html ,login1.jsp which does the database connection and welcome.jsp the main page. so the problem is when i put the username and password it directs me to the welcome.jsp, In …

0
65
Member Avatar for eimonphyu
0
53
Member Avatar for jeetudaljit
Member Avatar for ~s.o.s~
0
63
Member Avatar for emilio

i am trying to print an array list in a jsp page like this: [CODE]<body> <FORM METHOD="POST" ACTION="index.jsp"> <input type="text" name="text" value="" /> <input type="submit" value="add" /> </FORM> <jsp:useBean id="tomer" class="java.util.ArrayList" scope="session"/> <jsp:useBean id="r1" class="java.util.Iterator" scope="session"/> <% if (request.getParameter("text") !=null) {%> <% tomer.add(request.getParameter("text"));%> <%}%> <%r1 = tomer.iterator();%> <%while(r1.hasNext())%> <%{%> <%r1.next();%> …

0
89
Member Avatar for jeetudaljit

I am new to JSP. Please guide me which e-book or book should I read so that I can learn from basics to advance skills and develop a web site by own. Please help..!

Member Avatar for peter_budo
0
75
Member Avatar for senthil_sivanat

I want to send an SMS from my server i.e from my webpage. I need to know do i need any device related to this or can it be done with programming. Is SMPP is a protocol like SMTP or SMPP is a hardware. please reply me quickly.

Member Avatar for stephen84s
0
727
Member Avatar for bloody_ninja

[url]http://www.visualbuilder.com/jsp/tutorial/pageorder/13/[/url] I got the code from this place, however, when I try to run it, it doesn't work. I am new to JSP, just trying to learn the basics , but I can't even get correct info from the website. A friend altered the code for me like this, although …

Member Avatar for peter_budo
0
312
Member Avatar for guravharsha

Hi; The below jsp page is compiling fine but executing it shows error as[B]javax.servlet.ServletException: java.sql.SQLException: Column 'Total' not found.[/B] [CODE] <%-- Document : evaluationeventtable Created on : Jul 24, 2008, 6:52:37 PM Author : user1 --%> <%@page contentType="text/html" pageEncoding="UTF-8"%> <%@ page language ="java" %> <%@ page import="java.sql.*, javax.sql.*, javax.naming.*,java.io.*,java.util.*" %> …

Member Avatar for guravharsha
0
132
Member Avatar for jagsar2323
Member Avatar for samlabs821

Hello , I created link to admin/admin.jsp I want to create a link to index.jsp in admin page Mysite___ |___index.jsp |___admin/ |___admin.jsp

Member Avatar for samlabs821
0
112
Member Avatar for tefbaez

Hey there, I need help with something... I need to create 2 .jsp pages, one with a textbox in which you submit a name, and the second one should display it when you i click the submit button...but i cant seem to get it right =S this is what ive …

Member Avatar for tefbaez
0
664
Member Avatar for tactfulsaint

please i need help here after successfully deploying and i tried to test the web app but the server displays this error and i dont know what the problem might be.. HTTP Status 500 - -------------------------------------------------------------------------------- type Exception report message description The server encountered an internal error () that prevented …

Member Avatar for stephen84s
0
81
Member Avatar for guravharsha

Hi, my adduser.jsp page consist of form with field username,groupid like. I am forwarding this page to insertuser.jsp. my aim is that when I submit adduser.jsp page then the field filled in form should insert into the usertable.The insertuser.jsp is like: [code] String USERID=request.getParameter("id"); String NAME=request.getParameter("name"); String GROUPID=request.getParameter("group"); InitialContext context …

Member Avatar for senthil_sivanat
0
149
Member Avatar for jhughe28

Is it possible to have an XML sent to JSP without any user involvement? I know about set and get attributes, but does anyone know how to extract an XML message that's at the end of a URL? thanks

Member Avatar for senthil_sivanat
0
102
Member Avatar for affu304

i have one jsp with some hyper links. on click of this links i want to show some other jsps in the same jsp.

Member Avatar for senthil_sivanat
0
69
Member Avatar for aarya
Member Avatar for senthil_sivanat
0
142
Member Avatar for guravharsha

Hi, I am trying to retrieve data from table in two times. In first query I am displaying all data available in table. Now I want to count the no. Of rows available in the same table by using select count(*)from table-name type query. How can I retrieve records of …

Member Avatar for senthil_sivanat
0
534
Member Avatar for brr

iam getting problem while using resultset within resultset like... [code=java]while(rs.next()){ ....... ...... s=rs.getString(1); while(rs1.next()){ ------ ------- } //after completion of inner result set iam not getting values of outer resultset (null) like rs.getString(1);//nullpointer exception if i store in variable like in s above show then getting eventhough getting likethat but …

Member Avatar for senthil_sivanat
0
387
Member Avatar for kavit.bhatt
Member Avatar for Swetadri

Hi All, I have a problem.For my project, I need to log-in to yahoo.com by giving just username and password in my jsp form and I have to retreve the url of rssfeeds which I have subscribed by My Yahoo. I am not finding how to do this. I tried …

0
127
Member Avatar for jeetudaljit
Member Avatar for jeetudaljit
Member Avatar for peter_budo
0
2K
Member Avatar for guravharsha

Hi, I have one jsp page containing 2o questions retrieved from table along with its possible four-option answer in this manner: [B]Question1: Option-a Option-b Option-c Optio-d[/B]All the options are in radio button form. I am trying to store the result of these question test in my final output table: [QUOTE]Structure …

-1
86
Member Avatar for romi_ch

Dear developers, I lay my apologies if my question do not relate to current category. I am new to Java and trying to build a Java web application where i can use beans (to configure a database connection as well as my database entities) and JSP to present data through …

0
58
Member Avatar for guravharsha

Hi All, Kindly give me some guidelines regarding below issue. I am developing Student feedback system to provide feedback about faculty to in institution. Now I have three tables in database: 1.Questionid containing column as id, questionid-description, type 2.event table containing column eventid ,eventdescription,questioned-description(contain same data as like questionid-description from …

Member Avatar for peter_budo
0
144
Member Avatar for insauciant

what is wrong in following code [code] <form name="log" method="post" action="login.htm"> <% try { //Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); //String url="jdbc:odbc:ODVS"; Connection conn=null;//DriverManager.getConnection(url,"downtime","downtime"); Class.forName("oracle.jdbc.driver.OracleDriver"); conn=DriverManager.getConnection("jdbc:oracle:thin:@10.10.10.2:1521:PLMDM","vvv","vvv"); String uid=request.getParameter("username"); String pwd=request.getParameter("password"); String sqlQry=("select * from USR_PASS_TB where username='"+uid+"' and password='"+pwd+"'"); Statement stmt=conn.createStatement(); ResultSet rs=stmt.executeQuery(sqlQry); if(rs.next()==true) { //response.sendRedirect("../HTML/index_group.htm"); %> <jsp:forward page="login_cae.htm" /> <% } else { //response.sendRedirect("..HTML/invalid_login.htm"); …

Member Avatar for peter_budo
0
58
Member Avatar for bkgupta

Hi , I am a new member to Daniweb.I have one issue on progress bar in jsp. can any body tell me how to generate progress bar in jsp,while its fetching data from server side.

Member Avatar for peter_budo
0
65
Member Avatar for annuw

HI, i want to generate html file from xml and xslt documnet using java...pls,,,

Member Avatar for annuw
0
73
Member Avatar for sbuggle

Hello, I need detailed examples of how to create a pdf from jsp. On the jps page there will be a print button and when clicked the same jsp will pop up as a pdf to print. How do you include this behind the print button.... Using ireport Someone said …

Member Avatar for peter_budo
0
93

The End.