// assign the value of TheName parameter in the query string to a variable // eg : https://www.something.com/thepage.aspx?TheName=Santa+Claus var CustomerName = QueryString['TheName']; // CustomerName = 'Santa Claus'
// assign the value of TheName parameter in the query string to a variable // eg : https://www.something.com/thepage.aspx?TheName=Santa+Claus var CustomerName = QueryString['TheName']; // CustomerName = 'Santa Claus'
Object
QueryString