Re: doGet and doPost

2000-09-25 Thread Jeff Crilly
>From: Celal Ceken <[EMAIL PROTECTED]> > >what is the difference between doGet and doPost. Thanks for your help... doGet is called when the browser does a HTTP GET request. doPost is called when the browser does a HTTP POST request. GET is usually sent when the user clicks on a

Re: doGet and doPost

2000-09-25 Thread SANDEEP UPPAL
5, 2000 1:39 PM Subject: doGet and doPost > what is the difference between doGet and doPost. Thanks for your help... > > === > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". &g

doGet and doPost

2000-09-25 Thread Celal Ceken
what is the difference between doGet and doPost. Thanks for your help... === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found

Re: Using both doGet and doPost in a single page

1999-11-24 Thread meera nayak
I guess you do not have to specify this in jsp.It uses the services(_jspService) method which gets executed for both doGet and doPost .This is created when you run the jsp, automatically.check this out in the directory where your servlet engine stores the complied jsp code. meera

Using both doGet and doPost in a single page

1999-11-22 Thread Jay Macarty
In programming servlets I sometimes have a single servlet with both a doGet() and doPost() method to handle different situations. I am wondering how to accomplish this same thing cleanly in a JSP page. I seem to be able to specify either doGet or doPost with a <%@ directive but not both in