Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Port No 2

Status
Not open for further replies.

ravishanker

Programmer
Oct 8, 2000
14
0
0
IN
Hi Guys,
which portno u r using in the server of IIs when u
r making any web site.And which method u r using
when u will submit the form Get or Post.
(singh)
 
That's actually two different questions. As the first has already been answered, I will give you the second.

When you have a form and you use the "Post" method, it is sent throught MIME, and collected using the Reqeust.form("field") collection. When using the "Get" method on the form, the info is passed in the querystring, and you collect it using the Request.querystring("field")

Hope that answers the rest of your question.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top