using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using nmsSetup; public partial class Default2 : System.Web.UI.Page { clsBLSetup b; PRPSetup obj; protected void Page_Load(object sender, EventArgs e) { bind_aboutus(); } public void bind_aboutus() { obj = new PRPSetup(); b = new clsBLSetup(); List lst = new List(); //if (Request.QueryString["cid"] != null) //{ obj.catID = "2030"; //Request.QueryString["cid"].ToString(); obj.id = "3037";// Request.QueryString["id"].ToString(); // } lst = b.view_TextDetail(obj); string str = ""; if (lst.Count > 0) { reptdata.DataSource = lst; reptdata.DataBind(); } } }