Suppose i have all the implementation code required is written
in doGet() but my class has doPost() method. i need code
implemented in doGet() how can we do that?
Answer / aditya
If all the implementation is written in doGet()and the class has implemented the functionality in doPost(),servlet container will throw an exception.
A workaround could be calling doPost() from your doGet() method.
| Is This Answer Correct ? | 0 Yes | 0 No |
Write a Pseudo Code to fins the LCM of two given numbers
how many languages .net is supporting now?
Given: coordinates of rectangle-> left bottom and right top points. the rectangles create a hole.Find the maximum area of the hole. eg. 4 rectangles create a hole in between. find its area.
Explain what is OOPS and its concepts?
Write a shell program. Enter number of days from keyboard. Find out the number of years, month and days it contains
There are 2 tables: EMP : EmpId, Ename, Sal, DeptId DEPT : DeptId, Dname Write a query to find out emp names and their department names. if any emp has null in Deptid the it shows ?No Department?. Write a query to find out those department names which has no employee. Write a query to find out those employees whose salary is greater than their department?s average salary.
what are the steps for creating prompt table dynamically for the specified field
how many languages .net is supporting now?
In JCl , we have COND parameter.This holds comparison code and condition.It also has only and even parameters. ex: COND((4,GE),EVEN).what the comma mean here. is that 'and' or 'or'.
What is the difference between windows 98/2000/XP Operating Systems?
16 Answers CMS, Siemens, TCS,
When we have more than one main function in a program how does the compiler know the starting point of the program, i mean from which main the execution or compilation of the program begins?
Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fit" instead of the number and for the multiples of five print "Bit". For numbers which are multiples of both three and five print "FitBit".