More on HTTP Basics

This is the second part of our discussion regarding HTTP Basics.

Resource Locators or simply URL is what we use to go to specific site say http://www.google.com?search='MVC'.

Anatomy of a URL
  1. http://                            = URL Scheme
  2. www.google.com.ph     = Domain or Host
  3. ?search='MVC'          = URL Path or Query String

About URL Encoding, not all characters are valid and accepted by the browser, invalid characters are called unsafe characters and in order for this characters to be safe  URL Encoding is done.

Comments

Popular posts from this blog

Serializing JSON string to ExpandoObject

XML to ExpandoObject using Recursion in C#

Automatically Discover and Assign Parameter with Values to a Stored Procedure Call in C#