3,760 Topics
| |
What are the API's I have to use for making a online radio station through Java/Jsp..? | |
Hello every body>> ^_^ I want your help, I have done code that retrive data from the databse and the user can add data in the database , I want to do validition for student ID, if its in the datase before (if its valid before or not) I need … | |
[CODE]<%-- Document : index Created on : Dec 5, 2011, 10:44:50 PM Author : Orange --%> <%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>The Collection</title> </head> <body> <center> <%------------------Search-------------------------%> <form method="post" action="search.jsp">Please select the search parameter you want: <select name="SearchDB"> <option>Please select one</option> <option>Collectable</option> <option>Item Owned</option> … | |
I'm looking for a good book about Servlets and JSP for beginners. So far, the only book I know and have read is Head First Servlets & JSP, but it's focused more on the SCWCD exam rather than the specifics on building stuff. I'm looking for a book that has … | |
[CODE] <form name="myForm" method="post"> <textarea id="commentarea"></textarea> <input type="text" name="locate" value="<%=rs.getString("location")%>"> <input type="button" value="View Comment" onclick="getComment()"> </form> function getComment(){ <% String locate=request.getParameter("locate"); %> var location = "<%= locate%>"; document.getElementById('commentarea').value = location; } [/CODE] I know this is the worst way to access it, but i need to access it in this … | |
Hi all , I am learning j2ee with the help of this forum, I learned jsp and servlet , what should be my next learning process because lot frameworks/ technologies there to learn. Structs , Hibernate, Springs,Ajax all are strange for me. what should I learn next pls suggest me. … | |
hello all, after tried so much now posting here. i have two programs sql.php and form.jsp. i want to do insert values into mssql database from user input form. sql.php is able to insert the values into database. i have connected database using ODBC.form.jsp is able to give user input … | |
Hi All, Hope your all well Im really new to the world of JSP & AJAX, my question is, I need to retrive names from a database and present them to a user on a JSP form, but I shouldnt show any database interaction on the client end, So as … | |
I was hoping that someone could point me in the right direction to find a commodities stock ticker that I can show: Natural Gas, Crude Oil, etc. | |
im trying to display 10 rows in a table. it workd fine upto displaying 10 records but im not sure how to add logic to go to next page to view next 10 records. below is my code; [CODE] <p><h1 class="TextHeading1" align="center">Search<a name=<%=outerKey%>><%=outerKey%></a>Result:</h1></p> <table class="TableBackgroundDB"> <% int limit = 10; … | |
[B][U]1.User.jsp[/U][/B] [CODE]<form action="register" method="post"> First Name : <input type="text" name="firstName" /> <br /> Last Name : <input type="text" name="lastName" /> <br /> Email : <input type="text" name="email" /> <br /> Username : <input type="text" name="uName" /> <br /> Password : <input type="password" name="password" /> <br /> <input type="submit" value="Register" /> … | |
Hi, I am working on client authentication(in a sample JSP application) using certificates. I have written a code to extract the client information from the client certificate. Now I wanted to use certificate's serial number to identify the particular use from the database. I extract the serial number using [CODE]<%= … | |
hello all, after tried so much now posting here. i have two programs sql.php and form.jsp. i want to do insert values into mssql database from user input form. sql.php is able to insert the values into database. i have connected database using ODBC.form.jsp is able to give user input … | |
[CODE]<%@page import="mantenimiento.MantenimientoClientes"%> <%@page import="persistencia.Empresas"%> <%@page import="java.util.Iterator"%> <%@page import="java.util.List"%> <%@page import="mantenimiento.MantenimientoEmpresas"%> <%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>JSP Page</title> <script> function validateForm() { if(document.formulario.clienteid.value=="") { alert("clienteid no puede estar vacio"); document.frm.clienteid.focus(); return false; } if(document.formulario.password.value!=document.formulario.repitapassword.value) { alert("Password es diferente"); document.frm.password.focus(); return false; } if(document.formulario.nombre.value=="") { alert("nombre … | |
Hi All, I am using Struts framework, and finding that my url is showing parameters values. Actually after calling action I am redirecting to some other page on SUCCESS . (through Struts.xml config). Now in jsp I am redirecting with " method = post ". still when showing success page … | |
Please Any help me , I need Free JSP hosting with MS SQL (Data base) for one month as a trail basis to check my Project Work ! Please Help me out! | |
(More JNI woes...) When I try to comply this code [code] import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * Servlet implementation class HacerOperacionesConJNI */ public class HacerOperacionesConJNI extends HttpServlet { private static final long serialVersionUID = 1L; private native double operaciones(double a,double b,String op); … | |
Hello everybody. I have a question/problem. I have a select tag with several options. Sometimes the text of the option becomes very large. So I tried something like this for example: [CODE] <select> <option>A Very Big <br/> sentence</option> </select> [/CODE] But it didn't work. What I was trying is to … | |
Hi thr, I'm trying to host a web application from netbeans. I've added app engine server. but i could not start it. can any one give me an idea for it. it is giving me some class path error what should i do now? | |
I just want to create a file where I can test code idea's in. Basically I want to save a test.jsp file to my file system then open that up with a browser and have it execute the jsp code contained. Is that possible? Here's a simple test that I'm … | |
Hi, I am new to JSP, I have to store images from the clients on to the server, via client input, what will be the best practice to store the images on the server keeping the performance issues in mind as thousands of images will be stored... 1. should i … | |
I am developing an application for a college website .where i hava take the data from registration form and save it database. i need to use jsp , servlets and entity beans to interact with data base. My approach is .. I created a table in derby database n created … | |
Hi, Kindly help me to resolve this issue... Appreciate your help.. [CODE] <logic:notEmpty name="strataList" property="rangeList"> <logic:iterate name="strataList" property="rangeList" id="rangeList"> <td align="center"> <bean:write name="rangeList" property="min" /> </td> <td align="center"> <bean:write name="rangeList" property="max" /> </td> </logic:iterate> </logic:notEmpty> [/CODE] Could you please let me know is there any option to prevent duplicate value … | |
Hello folk's I`m new to JSP and to this forum so apologies for any mistakes. I'm struggling with a drop down menu selection, I have a database with 6 locations and if I want to select any of them and I can (so far so good)but I can't get it … | |
Hello guys, I am using Hibernate + Spring with netbeans to make a web application. I have it working correctly and displaying data from the DB. My problem is I only know how to do one hibernate query which is shown below. How can I do insert/delete queries. For instance … | |
i am making a chat server in jsp. i want to insert the message entered by a user in a table but i don't want to use any button to enter the message. can anyone suggest me a method to insert the message in the table when the user writes … | |
This is my jsp code for saving back the data to .properties file after editing. i used 2 Linked properties as one LinkedProperties pro is to get the data from the path and the other one to get attribute (eg: id, name, age, gender etc.) from default .properties file so … | |
How to create reports in core java like visual basic 6.0 report | |
Hi Folks, Hope your all well, Im Kind of new to JSP and so far I think I'm doing ok! However I'm using some of it for my dissertation which is creating an ITAM (IT Asset Management System). Im looking for some advice on drop down boxes and populating data, … | |
Anyone help me as soon as possible : Sir/Mam I want to pass more than 1 value through Query String I use the Code but it not working : [CODE] <tr> <td><a href="patmedrcd.jsp?id=<%=patid%> & q123=<%=qid%>"> View Patient's Medical Record</a></td> <td></td> </tr> [/CODE] and i get the value by this code … |
The End.