We've all used the QueryString to pass a few values into a page, so code like this is normal:
VB Code:
  1. Dim sName As String = Request.QueryString("Name")
But if i have 3 different pages that all work the same, i'd like to collect all the values passed in via the QueryString, and have a public function parse it.

Is there a special "collection" of QueryString values? And if so, how do i use it?
.