I have a querystring alike value set in a plain string. I started to split string to get value out but I started to wonder that I can proabably write this in one line instead. Could you please advice if there is more optimal way to do this?
I am trying to read "123" and "abc" like in Request.QueryString but from normal string.
protected void Page_Load(object sender, EventArgs e)
{
string qs = "id=123&xx=abc";
string[] urlInfo = qs.Split('&');
string id = urlInfo[urlInfo.Length - 2];
Response.Write(id.ToString());
}
Look at HttpUtility.ParseQueryString. Don't reinvent the wheel.
RichardOD is on it with HttpUtility.ParseQueryString but don't forget to look at
TryParse
.You can TryParse int, DateTimes etc
How do you test your Request.QueryString[] variables?
You can do it this way:
Hope it helps.