Subject: Re: Looking for java Positoin

2002-04-09 Thread Be Fair

Well Sir:

As a fellow born n raised U.S. Citizen (white male from a Great Plains
state) I will defend to the death your right to have your own opinion, even
as moronic as yours is.  However, if I may distract you from admiring your
rosy red neck for just a moment I would like to point out a few flaws in
your logic.

1. You are incorrect about these Curry Bastards and their tax treatment.  As
a foreign national working in the U.S. on an H1 visa these guests pay as
much tax as you do.  They are not working illegally washing dishes in
restaurants and have their wages reported to the same IRS office as you do.
They pay an equal amount of Social Security and Medicare tax as you do
(7.65%) without the possibility of benefiting from it when they return home.
  Additionally, the employing company has to pay an equal amount of
unemployment for each of these guests as they pay for you but in the event
of a layoff our guests can not file for unemployment benefits.

2. While I agree with you that the price of an American education is
ridiculously high, you clearly have no idea what foreign students pay for
the exact same education.  Check into it when you go back to wielding school
to start your next career. Foreign students pay two and three times as much
as you and I to go to the same schools.  They do this without student loans
and with employment generally restricted to on-campus jobs such as cleaning
the cafeteria.

3. Finally, you are wrong in that American companies are out to get you.
(You sound like a damn union poster child)  Companies have to pay through
the nose to set up these visas for their foreign employees.  They have to
hire attorneys in many cases just to wade through the INS bull shit.  The
fact of the matter is that our ¡§American¡¨ schools are failing to produce
the needed quantity of quality employees with technically oriented degrees.
(Science, Math, Health Care, etc.)

Should you ever have anything else to post please make sure it has at least
an inkling of intelligence to it.  Otherwise, just go join your Klan
brothers in a drunken cross burning and say hi to Pat Buchanan for me you
idiot.


||-Original Message-
||From: A mailing list about Java Server Pages specification
||and reference
||[mailto:[EMAIL PROTECTED]]On Behalf Of CurryBastard
||Sent: Tuesday, April 09, 2002 1:12 PM
||To: [EMAIL PROTECTED]
||Subject: Re: Looking for java Positoin
||
||
||To tell you the truth,
||Does Sept 11th ring a bell.
||Plus I am born n raised in the usa and I beleive that jobs in
||the usa should
||belong in the usa,
||I pay my taxes up to the teeth, and I oppose aliens coming in
||as h1b and
||taking jobs away from us citizens not putting their money in
||the us economy.
||They work here for less pay and leaving with dough that
||should belong to us
||citizens, who spent mad dough for college tuition or no
||tutition or time
||spent long years learning this stuff.
||I believe companies use that excuse that there is no
||qualified people so
||they look elsewhere so they look good on the books.
||They pay off the politicians etc
||



_
Join the world’s largest e-mail service with MSN Hotmail.
http://www.hotmail.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com



Re: multiple HTML Forms

2002-05-16 Thread Be Fair

You can set all the submit buttons to trigger a java script function. In
that java script function, copy all data from all three forms to the forth
form, then submit the forth form. In the 4th form, create total number of
fields (from all three forms) in hidden format.


function finalSubmit() {
document.form4.text1.value = document.form1.text1.value;
document.form4.text2.value = document.form2.text1.value;
document.form4.text3.value = document.form3.text1.value;
document.form4.submit();
return false;
}



text1: 




Enter some text: 




Enter some text: 











>From: "Boddula, Sridhar" <[EMAIL PROTECTED]>
>Reply-To: A mailing list about Java Server Pages specification and
>reference <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: multiple HTML Forms
>Date: Thu, 16 May 2002 13:11:08 -0400
>
>Hi,
>
>I have a jsp page. In that page i have 3 HTML forms and each one is having
>submit button. If I click any submitt i need to send all the three forms.
>
>Could any one tell me how can I submit multiple forms in one submit.
>
>
>I appreciate your help,
>
>
>thanks,
>
>Sridhar Boddula
>
>===
>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://archives.java.sun.com/jsp-interest.html
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.jsp
>  http://www.jguru.com/faq/index.jsp
>  http://www.jspinsider.com




_
Join the world’s largest e-mail service with MSN Hotmail.
http://www.hotmail.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://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com