Different Between Post & Get

E

ElanKathir

Hi ,

What is the different between Post and Get mothed in ASP.Net ?

Thanks & Regrads

Elankathir,
B'lore,
India.
 
G

Guest

Hi Elan Kathir,

POST puts the form values into the headers of the HTTP communication, GET
puts the form values into the URL string. GET is limited to about 256
characters (usually a browser limitation) and creates really ugly URLs.
POST allows you to have extremely dense forms and pass that to the server
without clutter or limitation in size. e.g. you obviously can't send a file
from the client to the server via GET.

Regards,
Jignesh.
 
E

ElanKathir .S.N

Hi Jignesh,

But How to Get the Value from the Server Side,
When you sent using Get.

In Post, the Server Control's are receive the values.

Thanks & Regards

Elankathir,
B'lore,
India.
 
M

Michael Ramey

You can get values from the querystring by calling the following.

Request.QueryString("myVariable")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,780
Messages
2,569,611
Members
45,276
Latest member
Sawatmakal

Latest Threads

Top