I have a query string that I want to get a value from. I want to extract a piece of text from the string and display it but I can't quite figure it out.
This is the query string:
utm_source=google&utm_medium=cpc&utm_campaign=Microsoft&gad_source
So I want to extract the piece of text after "utm_campaign" from the string and display it. In this case I will display the text "Microsoft".
How can I do this?
Any help is appreciated.
HttpUtility.ParseQueryStringto get a name value collection.