protected void Page_Load(object sender, EventArgs e) { //get the content to show if (Request["Typ"] != null) { contentType = Request["Typ"].ToString(); } if (Request["Loader"] != null) { appconfigDID = Request["Loader"].ToString(); } CanvasBizProcess canvBiz = new CanvasBizProcess(); string dataToShow= canvBiz.FetchSweepStakeUtilData(appconfigDID, contentType); if (dataToShow == "") { litFBData.Text = "No Data to Show !"; } else { litFBData.Text = dataToShow; } }