I am trying to capture querystring value into a string variable. But only the part before ampersand gets captured not the ampersand and the rest.
c = Request.QuerySt ring["org"].Trim();
Hovering on ".QueryStri ng" shows me "org=ab&cd"
But "c" captures only part before ampersand , just "ab".
How do I make this work?
c = Request.QuerySt ring["org"].Trim();
Hovering on ".QueryStri ng" shows me "org=ab&cd"
But "c" captures only part before ampersand , just "ab".
How do I make this work?
Comment