string query in c# code example
Example 1: querstring fromat asp.net c#
public partial class QueryStringValuesTransfer : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string id1 = Server.UrlDecode(Request.QueryString["id"]);
string name1 = Server.UrlDecode(Request.QueryString["name"]);
Response.Write(id1 + name1);
}
Example 2: querstring fromat asp.net c#
[TestMethod]
public void QueryStringTest()
{
string str = "http://mysite.com/page1?id=3123&format=json&action=edit&text=It's%20a%20brave%20new%20world!";
var query = new UrlEncodingParser(str);
Assert.IsTrue(query["id"] == "3123");
Assert.IsTrue(query["format"] == "json","wrong format " + query["format"]);
Assert.IsTrue(query["action"] == "edit");
Console.WriteLine(query["text"]);
query["id"] = "4123";
query["format"] = "xml";
query["name"] = "<< It's a brave new world!";
var url = query.ToString();
Console.WriteLine(url);
}