private string GetSelfURL(string qsKey, string qsValue) { string url = Request.Url.PathAndQuery; if (qsKey != null && qsValue != null) { url = Web.AddQSValue <string>(url, qsKey, qsValue); } return(url); }