protected void btnSearch_Click(object sender, EventArgs e) { Dispatch dispatch = new Dispatch(); dispatch.OrderDate = (Convert.ToDateTime(txtOrderDate.Text)).ToString("dd-MM-yyyy"); dispatch.RouteID = Convert.ToInt32(dpagentRoute.SelectedItem.Value); DispatchData dispatchData = new DispatchData(); DataSet DS = new DataSet(); DS = dispatchData.CashierGetDetails(dispatch); if (!Comman.Comman.IsDataSetEmpty(DS)) { rpRouteList.DataSource = DS; rpRouteList.DataBind(); rpRouteList.Visible = true; uprouteList.Update(); // DS.WriteXml(Server.MapPath("~/Tabs/Dispatch/temp.xml")); //string str = DS.GetXml(); //insertDispatchTemp(DS); } else { rpRouteList.Visible = false; uprouteList.Update(); } }