protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { if (Request["PCH"] != null) { string strPCH = Request["PCH"]; DataSet ds = QuCheck.GetWGDItems(strPCH); this.grdGridList.DataSource = ds; this.grdGridList.DataBind(); } } }