Is there a way to get all the querystring name/value pairs into a collection?
I\'m looking for a built in way in .net, if not I can just split on the & and load
Well, Request.QueryString already IS a collection. Specifically, it's a NameValueCollection. If your code is running in ASP.NET, that's all you need.
Request.QueryString
NameValueCollection
So to answer your question: Yes, there is.