Hi Manoj,
It seems that you didn't understand what 'Craig McClanahan' has said. You
don't need to hard code the radio button values as you're querying the
values from category_master table. You need to construct the html page from
servlet A with the data (category_code) queried from category_master. Even
if you change the master table, servlet A will take that value and construct
the html dynamically. This way you don't need to change your servlets for
changes that you make in category_master table.

Hope you would understand.

Regards,
Kumar


-----Original Message-----
From: manoj kumar <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Date: Wednesday, November 17, 1999 10:45 AM
Subject: Re: passing valuees from javascript to servlets


>Hi Andras (and everybody else),
>
>This means that while generating the html page I have to hard code the
>values of radio buttons(00001,xxxxxx etc) in the servlet, while as my
>category code is a field of category  master table. In case my master
>changes, i will have to change my servlets aslo.
>This is not a feasible solution, I believe.
>That is where basically the problem is.
>
>I am looking for solution to this.
>
>
>thanks,
>
>
>manoj
>
>
>>From: Andras Balogh <[EMAIL PROTECTED]>
>>Reply-To: "A mailing list for discussion about Sun Microsystem's Java
>>        Servlet API Technology." <[EMAIL PROTECTED]>
>>To: [EMAIL PROTECTED]
>>Subject: Re: passing valuees from javascript to servlets
>>Date: Tue, 16 Nov 1999 15:18:31 +0200
>>
>>     Hi,
>>
>>     You can pass to HTML the category code as the VALUE of the
>>RADIO BUTTON .
>>In the servlet A:
>>out.println("<input type=\"radio\" name="category_code\" selected
>>value="000001"> This is category 1");
>>out.println("<input type=\"radio\" name="category_code\" value="000002">
>>This is category 2");
>>....
>>out.println("<input type=\"radio\" name="category_code\" value="XXXXXXX">
>>This is category XXXXXXXX");
>>....
>>
>>Now in the servlet B:
>>
>>String category_code=req.getParameterValues("category_code")[0];
>>String query="select product_name from product_master where
>>category_code="+category_code;
>>file://execute the query etc.
>>
>>
>>Best wishes,
>>
>>                 Andras.
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>----- Original Message -----
>>From: manoj kumar <[EMAIL PROTECTED]>
>>To: <[EMAIL PROTECTED]>
>>Sent: Tuesday, November 16, 1999 1:30 PM
>>Subject: Re: passing valuees from javascript to servlets
>>
>>
>> > Hi Andras/Pradeep,
>> >
>> > Thanks for the help.
>> > My problem is a little bit more complicated.
>> > I am able to pass values from a HTML element to a Servlet.
>> > My problem is that based on that value I want to fire a query on a
>>table.
>> > Let me further expalin the problem.
>> > Upon clicking a HTML link(or button), a servlet is called(A), which
>>fires
>>a
>> > select query on a table
>> >
>> > select category_description from category_master
>> >
>> > The result of this query is formatted into an html page and sent back
>> > to browser.Now the user selects a particular category and presses
>> > submit/next(whatever).This results in a call to another servlet(B) or
>> > the same servlet(A,how..?) which in turn fires another query
>> >
>> > select product_name from product_master where category_code=xxxxxx
>> > This 'xxxxxxx' is something which should correspond to the category
>>selected
>> > by the user in the previously generated html page(by servlet A).
>> > I was thinking of making it possible through javascript but couldn't
>>find
>>a
>> > solution.
>> >
>> > hope this clears the idea.
>> >
>> > help is immidiately needed.
>> >
>> > thanks
>> >
>> >
>> > manoj
>>
>>__________________________________________________________________________
_
>>To unsubscribe, send email to [EMAIL PROTECTED] and include in the
body
>>of the message "signoff SERVLET-INTEREST".
>>
>>Archives: http://archives.java.sun.com/archives/servlet-interest.html
>>Resources: http://java.sun.com/products/servlet/external-resources.html
>>LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
>
>______________________________________________________
>Get Your Private, Free Email at http://www.hotmail.com
>
>___________________________________________________________________________
>To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
>of the message "signoff SERVLET-INTEREST".
>
>Archives: http://archives.java.sun.com/archives/servlet-interest.html
>Resources: http://java.sun.com/products/servlet/external-resources.html
>LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to