Difference between Htttppost and Httpget Methods?

Answers were Sorted based on User's Feedback



Difference between Htttppost and Httpget Methods?..

Answer / shashikesh

As their names imply, both HTTP GET and HTTP POST use HTTP
as their underlying protocol. Both of these methods encode
request parameters as name/value pairs in the HTTP request.
The GET method creates a query string and appends it to the
script’s URL on the server that handles the request.
The POST method creates a name/value pairs that are passed
in the body of the HTTP request message.

Is This Answer Correct ?    14 Yes 0 No

Difference between Htttppost and Httpget Methods?..

Answer / neha

Http Get is generally used when you send the request for first time on the server,
Http post is used once the page is there on user side and again the page is sent on the server to get some request

Is This Answer Correct ?    2 Yes 7 No

Difference between Htttppost and Httpget Methods?..

Answer / satish

HTTP Get is a protocol is used to get the data from the
server side.While coming to the HTTP post to append the
data to the client side to server side which can given by
the user on URL

Is This Answer Correct ?    2 Yes 8 No

Post New Answer

More ASP.NET Interview Questions

Describe the application event handlers in ASP.NET?

0 Answers   HCL,


What is the maximum amount of memory any single process on Windows can address? Is this different than the maximum virtual memory for the system? How would this affect a system design?

2 Answers  


How can we read a columnised text data in ASP.Net C#? Columnised means my data is stored in a text file and I have numeric data or string data in this file. For ex. If I am searching for the data of gender and I know that gender data is stored at column 32 in text file. How can I get this data in ASP.Net page. Thanks for help in advance.

2 Answers  


What is fulltrust?

0 Answers  


What is custom events?

0 Answers  






how can you handle "control is not part of this page " error?

3 Answers   FactorH,


What role “#&&” plays in a querysting?

0 Answers  


In which event of page cycle is the viewstate available?

0 Answers  


What are the new web part controls in asp.net 2.0 ?

0 Answers  


You are creating a Web site for Your company. You receive product lists in the form of XML documents. You are creating a procedure to extract information from these XML documents according to criteria that your users will select. When a user makes a request, you want the results of these requests to be returned as quickly as possible. What should you do? A . Create an XmlDataDocument object and load it with the XML dat Use the DataSet property of the object to create a DataSet object. Use a SQL SELECT statement to extract the requested dat B . Create an XmlDataDocument object and load it with the XML data. Use the SelectNodes method of the object to extract the requested data. C . Create an XPathDocument object and load it with the XML data. Call the CreateNavigator method to create an XPathNavigator object. Call the Select method of the XPathNavigator object to run an XPath query that extracts the requested data. D . Create an XmlReader object. Use the Read method of the object to stream through the XML data and to apply an XPath expression to extract the requested data.

1 Answers   Syntax Softtech,


What is autopostback in asp net?

0 Answers  


How to find last error which occurred in Asp.net ?

0 Answers  


Categories