InterviewSolution
| 1. |
What Is The Difference Between Difference Between Doget() And Dopost()? |
|
Answer» GET Method : Using get method we can able to PASS 2K data from HTML All data we are PASSING to Server will be displayed in URL (request STRING). POST Method : In this method we does not have any size limitation. All data passed to server will be hidden, User cannot able to see this info on the browser. GET Method : Using get method we can able to pass 2K data from HTML All data we are passing to Server will be displayed in URL (request string). POST Method : In this method we does not have any size limitation. All data passed to server will be hidden, User cannot able to see this info on the browser. |
|