——此文章摘自《ASPNET +SQL Server网络应用系统开发案例精解》定价¥特价¥ 详细>>http://tracklinktechcn/?m_id=dangdang&a_id=A&l=&l_type= width= height= border= nosave> .连锁店销售信息的查看 单击统计分析即可进入销售统计管理界面STManagerDep_Prodaspx如图所示 http://developcsaicn/dotnet_ASP/images/jpg> 图 销售统计管理界面 DataGrid控件用来向管理员展示已有的连锁店销售信息STManagerDep_Prodaspxcs核心代码及其解释如下 private void Page_Load(object sender SystemEventArgs e) { if(Session[STNickName] != null) { //获得数据库连接字符串 string STconnection = ConfigurationSettingsAppSettings[strconnection]; STconn = new SqlConnection(STconnection); if(!IsPostBack) { //自定义BindGrid ()方法加载连锁店销售的信息 BindGrid(); } } else { ResponseRedirect(/Indexaspx); } } //加载连锁店销售的信息 public void BindGrid() { //创建查询连锁店销售信息的sql语句 string STstrsql=select STSaleIDSTDepSTDepNameSTProdNameSTSaleSTSaleNum STSaleSTStartTime STSaleSTEndTime from STSaleSTDepSTProd where STSaleSTProdID = STProdSTProdID and STSaleSTDepID = STDepSTDepID; //创建SqlDataAdapter的实例 SqlDataAdapter STsda=new SqlDataAdapter(STstrsqlSTconn); //创建DataSet的实例 DataSet STds=new DataSet(); //将信息填充到DataSet right>[] [http://developcsaicn/dotnet_ASP/htm>] [http://developcsaicn/dotnet_ASP/htm>] [http://developcsaicn/dotnet_ASP/htm>] [http://developcsaicn/dotnet_ASP/htm>] [http://developcsaicn/dotnet_ASP/htm>] [http://developcsaicn/dotnet_ASP/htm>] |