Exemple #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            base.Response.ContentType = "text/html; charset=utf-8";
            string text  = base.Request.QueryString["lid"].ToString();
            string text2 = base.Request.QueryString["callback"].ToString();
            string html  = GetNumber.GetHtml(string.Concat(new string[]
            {
                this.strNumberUrl,
                "/Data/GetJsonData.aspx?lid=",
                text,
                "&callback=",
                text2
            }));

            base.Response.Write(html);
        }
Exemple #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     this.Response.ContentType = "text/html; charset=utf-8";
     this.Response.Write(GetNumber.GetHtml(this.strNumberUrl + "/Data/GetJsonData.aspx?lid=" + this.Request.QueryString["lid"].ToString() + "&callback=" + this.Request.QueryString["callback"].ToString()));
 }