I for one have learned something from ALL the postings on this list. I
credit Sufi for having the guts to ask questions, when so many developers
just keep on making the same stupid mistakes.

My humble advice to the mean person who forgot their coffee today: If you
don't want to read or respond to questions, don't subscribe to this
listserv. (And I'm sure YOUR teachers and mentors will appreciate the
payment you'll be sending them shortly ...)

Let's lighten up, eh?

-----Original Message-----
From: sufi malak [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 03, 2001 3:10 PM
To: [EMAIL PROTECTED]
Subject: Re: off topic( javascrpt + jsp) ???Urgent Please


First of allI am a girl, all my serverside coding is working %100, but I
don't know if I should take a javascript class, or just spend sometimes only
with java, why all that behavior, even though subject was "Off Topic", and
most of my previous posting were about javascript, I don't understand why
all this behavior, maybe you are or you feel that you are a GURU in this
field, tha's good for you, but when you start talking about my paycheck, I
think that is not polite, you know I was a biology major, and then I have
never taken any class in java or jsp or php, I started teaching myself, and
thanks GOD, I got an IT job, I success with lot of projects, yes lot of time
I ask question, maybe you have more than several years in this field, just
compare it with less than one and hafe year of a self teaching, but even
whatever happened I am still respecting everybody in this mailing list, go
back to the archive, me too I helped sometimes, please whoever feel that I
am not apprpriate for this mailing list reply by saying "We don't want you
here any more", if I feel like I am bothering everybody here, I will never
return back.
I think that this mailing list should be divided in two, one for hard
questions, and one for newbie people.
Thank you for reading
God bless you
Sufi


>From: Satyanarayan Divakar <[EMAIL PROTECTED]>
>Reply-To: A mailing list about Java Server Pages specification and
>     reference <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: Re: off topic( javascrpt + jsp) ???Urgent Please
>Date: Tue, 3 Apr 2001 16:34:04 -0500
>
>Yes what you have mentioned is right Every day there happens to be more
>than
>one simple question from this guy.. Was looking forward for some one to
>tell
>it out..
>
>-----Original Message-----
>From: T.A. Flores [mailto:[EMAIL PROTECTED]]
>Sent: Tuesday, April 03, 2001 3:35 PM
>To: [EMAIL PROTECTED]
>Subject: Re: off topic( javascrpt + jsp) ???Urgent Please
>
>
>It occurred to me after seeing your particular name that I have seen it
>many times before.
>
>A quick search of the archieves yielded some interesting results.  More
>specifically I stopped at over 200 hits on your name.  It is that you
>have people on the list doing your job for you?  If so then may I
>suggest that you forward those who have assisted you your paycheck.
>
>http://archives.java.sun.com/cgi-bin/wa?S2=jsp-
>interest&q=&s=&f=sufi&a=&b=
>
>
>----- Original Message -----
>From: sufi malak <[EMAIL PROTECTED]>
>Date: Tuesday, April 3, 2001 1:00 pm
>Subject: Re: off topic( javascrpt + jsp) ???Urgent Please
>
> > Here is what I did but still does not work :
> > <%
> >        String requestUri = request.getRequestURI();
> >        int indexOfqm = requestUri.indexOf('?');
> >        if (indexOfqm != -1)
> >                requestUri = requestUri.substring(0, indexOfqm);
> >
> >        String category = request.getParameter("category");
> > %>
> >
> > <%
> > if (category !=null)
> > {
> >  category = (String)request.getParameter("flag");
> > }
> > else //If category wasn't in the query string, set it to a default
> > value.{
> >  category = "All"; //Fill in the default value here. I just used
> > an empty
> > string.
> > }
> > %>
> >
> > <center>
> > <script language="JavaScript">
> > function gotoFunction() {
> >        self.location =
> > document.productGoto.productList.options
>[document.productGoto.productList.selectedIndex].value;
> > }
> >
> > </script>
> > <table  width="90%" cellpadding="4">
> > <tr >
> > <td bgcolor="#eeeeff">
> > <FORM NAME="productGoto">
> > <FONT FACE="Arial,Helvetica" SIZE="-2">
> > Select By Category:
> > <SELECT NAME="productList" onChange="gotoFunction()" onBlur="return
> > options[0].selected = true">
> > <OPTION VALUE="">Select a Category
> > <OPTION VALUE="<%= requestUri %>?category=All ">All Categories
> > <OPTION VALUE="<%= requestUri %>?category=Computing ">Computing
> > <OPTION VALUE=" ">Competition
> > <OPTION VALUE=" ">Commerce
> > <OPTION VALUE=" "> Audit Firms
> > <OPTION VALUE=" ">Government
> > <OPTION VALUE=" ">Health
> > <OPTION VALUE=" ">Industry
> > <OPTION VALUE=" ">Investment Advisors
> > <OPTION VALUE=" ">Law Firms
> > <OPTION VALUE=" ">Mutual Fund Pages
> > <OPTION VALUE=" ">News/Views
> > <OPTION VALUE=" ">Reference
> > <OPTION VALUE=" ">Transportation
> > <OPTION VALUE=" ">Travel
> > <OPTION VALUE=" ">Web Research
> > <OPTION VALUE=" ">WebPage Technology
> >
> > </SELECT>
> > </FORM>
> > </td>
> > <td width="100%">
> >
> > </td>
> > </tr>
> > </table>
> > <% System.out.println(">>>>>>>>>>>>>>> category = " + category); %>
> >
> >
> > >From: "Agarwal, Shekhar (MED, TCS America)"
> > <[EMAIL PROTECTED]>>Reply-To: A mailing list about Java
> > Server Pages specification and
> > >     reference <[EMAIL PROTECTED]>
> > >To: [EMAIL PROTECTED]
> > >Subject: Re: off topic( javascrpt + jsp) ???Urgent Please
> > >Date: Tue, 3 Apr 2001 14:53:39 -0500
> > >
> > >hi
> > >u can use the method onSelect()=document.formname.submit();
> > >then using request.getParameter("fieldname"); in the same jsp to
> > get the
> > >value back.
> > >regds
> > >shekhar
> > >SHEKHAR AGARWAL
> > >TATA CONSULTANCY SERVICES
> > >Email : [EMAIL PROTECTED]
> > <mailto:[EMAIL PROTECTED]>>Tel:  268-548-2592 (work)
> > >        262-798-1052 (home)
> > >
> > >
> > >-----Original Message-----
> > >From: sufi malak [mailto:[EMAIL PROTECTED]]
> > >Sent: Tuesday, April 03, 2001 2:41 PM
> > >To: [EMAIL PROTECTED]
> > >Subject: off topic( javascrpt + jsp) ???Urgent Please
> > >
> > >
> > >How can I have when a user select from a drop down list a name in
> > a jsp
> > >page, the same file get submited with variable selected .
> > >Thanks lot.
> > >_________________________________________________________________
> > >Get your FREE download of MSN Explorer at http://explorer.msn.com
> > >
> >
> >=======================================================================
>=
> > >===
> > >To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> > >JSP-INTEREST".
> > >For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
> > >DIGEST".
> > >Some relevant FAQs on JSP/Servlets can be found at:
> > >
> > >  http://java.sun.com/products/jsp/faq.html
> > >  http://www.esperanto.org.nz/jsp/jspfaq.html
> > >  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
> > >  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
> > >
> >
> >=======================================================================
>====
> > >To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> > >JSP-INTEREST".
> > >For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
> > >DIGEST".
> > >Some relevant FAQs on JSP/Servlets can be found at:
> > >
> > >  http://java.sun.com/products/jsp/faq.html
> > >  http://www.esperanto.org.nz/jsp/jspfaq.html
> > >  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
> > >  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
> >
> > _________________________________________________________________
> > Get your FREE download of MSN Explorer at http://explorer.msn.com
> >
> >
>========================================================================
>===
> > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> > JSP-INTEREST".
> > For digest: mailto [EMAIL PROTECTED] with body: "set JSP-
> > INTEREST DIGEST".
> > Some relevant FAQs on JSP/Servlets can be found at:
> >
> > http://java.sun.com/products/jsp/faq.html
> > http://www.esperanto.org.nz/jsp/jspfaq.html
> > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
> > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
> >
>
>===========================================================================
>To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
>JSP-INTEREST".
>For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
>DIGEST".
>Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>
>===========================================================================
>To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
>JSP-INTEREST".
>For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
>DIGEST".
>Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST
DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to