62,265
社区成员
发帖
与我相关
我的任务
分享
btnSearch_Click(null,null);
protected void btnSearch_Click(object sender, EventArgs e)
{
string chartSn = txtChartSn.Text.Trim();
string chartName = txtChartName.Text.Trim();
string seaAreaName = ddlSeaArea.Text;
if (seaAreaName == "全部海区") seaAreaName = "";
ChartInStoreList chartInStoreList = ChartInStoreList.FetchList(chartSn, chartName, seaAreaName);
gridView.DataKeyNames = new string[] { "InstoreID" };
gridView.DataSource = chartInStoreList;
gridView.DataBind();
Session["CHART_SALE_SELECT_LIST1"] = chartInStoreList;
}