Forum: JSP Jun 29th, 2009 |
| Replies: 17 Views: 1,834 <html>
<head><title>Sales Page/title></head>
<body>
<script type="text/javascript">
function ajaxFunction()
{
var xmlHttp;
try
{ // Firefox, Opera 8.0+, Safari
xmlHttp=new... |
Forum: JSP Jun 13th, 2009 |
| Replies: 17 Views: 1,834 you want to show the itemname from the database
it is very easy,
in your servlet
by open a dao connection
get all the data from the database
set into the ArrayList
then in... |
Forum: JSP Jun 13th, 2009 |
| Replies: 17 Views: 1,834 Use Ajax for your reqirement
i am giving solution to your problem
first create 2 jsp for your reqirement
first you show the one list itemname in the first jsp page
when user select the... |
Forum: JSP May 27th, 2009 |
| Replies: 10 Views: 1,775 Create the variable in the javaScript
and store the value in it
then use it
function changeQuantity(form,productCode,index)
{
var z=productCode;
var y=index;... |
Forum: JSP May 27th, 2009 |
| Replies: 10 Views: 1,775 Create the variable in the javaScript
and store the value in it
then use it
function changeQuantity(form,productCode,index)
{
var z=productCode;
var y=index;... |
Forum: JSP Apr 30th, 2009 |
| Replies: 10 Views: 2,130 peter
this is the small application for school boys,
there is so many drawbacks
in your application
have you make any connection pool
in your tutorial
do n't ask what is connection pool |
Forum: JSP Apr 30th, 2009 |
| Replies: 10 Views: 2,130 but the original question was that
want to make one checked radio,
based on a condition
there are 2 radio button
when the jsp load from the server end
1 radio is checked on ... |
Forum: JSP Apr 30th, 2009 |
| Replies: 10 Views: 2,130 hi
peter
i am talking about html form elements
like radio button,checkboxes,textbox
in a jsp page how can you access them
through jstl tags |
Forum: JSP Apr 30th, 2009 |
| Replies: 10 Views: 2,130 hi
peter,Can you tell me
how can i access the HTML
form element through the JSTL tag |
Forum: JSP Apr 29th, 2009 |
| Replies: 10 Views: 2,130 <html>
<head>
<script language="JavaScript">
function checkedOne(str)
{
var len=document.f2.appStatusDescription.length;
for(var i=0;i<len;i++) |
Forum: JSP Apr 28th, 2009 |
| Replies: 4 Views: 619 my dear frnd
i gave the answere of your question
Please read it carefully
when the client click the link
download file, it automatically ask from the client
do you want to save it
if client... |
Forum: JSP Apr 28th, 2009 |
| Replies: 4 Views: 619 <a href="www.yourserver.com/java/chapter.txt" >Download file</a>
<a href="www.yourserver.com/java/chapter.zip" >Download file</a>
<a href="dynamic value get from servlet through bean... |
Forum: JSP Apr 28th, 2009 |
| Replies: 7 Views: 1,449 <%@ page language="java" import="com.bean.*,java.util.ArrayList" %>
<%
// import the ArrayList
ArrayList arr=(ArrayList)request.getAttribute("arr")
// then iterate through the ArrayList ... |
Forum: JSP Apr 25th, 2009 |
| Replies: 7 Views: 1,449 <logic:iterate name="arr" id = "columnsVO">
<logic:equal name="columnsVO" property="price" value="xyz">
process some work here
</logic:equal>
<logic:notEqual name="columnsVO" property="price"... |
Forum: JSP Apr 24th, 2009 |
| Replies: 7 Views: 1,449 hi
my dear frnd
this is very un logical
u hv a ArrayList
in which 100 objects(let us consider)
each object has 3 property
product
family
price |
Forum: JSP Apr 24th, 2009 |
| Replies: 5 Views: 27,036 Yes u can do it
but u hv to speicify from where do u want
to display the list of all the the male members
if u want that value to be get from the database
then u can use ajax from ur current... |
Forum: JSP Apr 24th, 2009 |
| Replies: 7 Views: 1,449 ArrayList final = null;
StdprdDAO DAO = new stdprdDAO();
final = DAO.getPFP();
there is no need of For loop
For(int i = 0; final !=null && i<final.size() ; i++)
{
columnsVO VO = null;... |
Forum: Java Apr 13th, 2009 |
| Replies: 9 Views: 557 how to explain this Array |
Forum: Java Mar 25th, 2009 |
| Replies: 4 Views: 381 String test="abacedabcedbcdea"
find the frequency of a , b ,c ,e and d |
Forum: Java Feb 24th, 2009 |
| Replies: 3 Views: 435 i hv seen the reply of my question
but i could n't understand , how can i use this api
in my application |
Forum: Java Feb 23rd, 2009 |
| Replies: 3 Views: 435 connection polling in struts based application
i have a application,in which, required maximum 50 users
when the database connection is happened
then i have the requirement of connection... |