在ASP.NET(C#)中调用周销售记录存储过程

     创建一个名为DynamicSalesByWeek的ASP.NET (C#)程序,把WebForm1.aspx改为default.aspx,创建一个名为DataTier的类库,把Class1.cs改名为DataTier.cs,在Web.config增加要增加连接的数据库名称。

default.aspx的全部内容如下:

<%@ Page language="c#" Codebehind="Default.aspx.cs" AutoEventWireup="false" Inherits="DynamicSalesByWeek.WebForm1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
 <HEAD>
  <title>Dynamic Sales by Week</title>
  <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
  <meta name="CODE_LANGUAGE" Content="C#">
  <meta name="vs_defaultClientScript" content="JavaScript">
  <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
  <style>
   BODY { FONT-SIZE: 10pt; FONT-FAMILY: Tahoma,Arial,sans-serif }
  </style>
 </HEAD>
 <body>
  <form id="Form1" method="post" runat="server">
   <H3>Dynamic Category Sales by Week Demo</H3>
   <P>This example shows a simple .aspx page with a DataGrid control making use of the
    DynamicCategorySalesByWeek stored procedure.</P>
   <P>Starting Date:&nbsp;
    <asp:TextBox id="txtStartingDate" runat="server" Width="112px"></asp:TextBox>&nbsp;&nbsp;&nbsp;&nbsp;
    Number of weeks:&nbsp;
    <asp:DropDownList id="ddWeeks" runat="server" Width="56px">
     <asp:ListItem Value="1">1</asp:ListItem>
     <asp:ListItem Value="2">2</asp:ListItem>
     <asp:ListItem Value="3">3</asp:ListItem>
     <asp:ListItem Value="4">4</asp:ListItem>
     <asp:ListItem Value="5">5</asp:ListItem>
    </asp:DropDownList>&nbsp;&nbsp;&nbsp;&nbsp;
    <asp:Button id="Button1" runat="server" Text="Go"></asp:Button></P>
   <P>
    <asp:DataGrid id="DataGrid1" runat="server" BorderColor="#E7E7FF" BorderStyle="None" BorderWidth="1px"
     BackColor="White" CellPadding="3" GridLines="Horizontal" AutoGenerateColumns="False">
     <FooterStyle ForeColor="#4A3C8C" BackColor="#B5C7DE"></FooterStyle>
     <SelectedItemStyle Font-Bold="True" ForeColor="#F7F7F7" BackColor="#738A9C"></SelectedItemStyle>
     <AlternatingItemStyle BackColor="#F7F7F7"></AlternatingItemStyle>
     <ItemStyle ForeColor="#4A3C8C" BackColor="#E7E7FF"></ItemStyle>
     <HeaderStyle Font-Bold="True" ForeColor="#F7F7F7" BackColor="#4A3C8C"></HeaderStyle>
     <PagerStyle HorizontalAlign="Right" ForeColor="#4A3C8C" BackColor="#E7E7FF" Mode="NumericPages"></PagerStyle>
    </asp:DataGrid></P>
  </form>
 </body>
</HTML>


default.aspx.cs的全部内容如下:

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace DynamicSalesByWeek
{
 /// <summary>
 /// Summary description for WebForm1.
 /// </summary>
 public class WebForm1 : System.Web.UI.Page
 {
  protected System.Web.UI.WebControls.DropDownList ddWeeks;
  protected System.Web.UI.WebControls.DataGrid DataGrid1;
  protected System.Web.UI.WebControls.TextBox txtStartingDate;
  protected System.Web.UI.WebControls.Button Button1;
 
  private void Page_Load(object sender, System.EventArgs e)
  {
   // Put user code to initialize the page here

   if (!IsPostBack)
   {
    // set defaults
    txtStartingDate.Text = "3/1/1998";
    ddWeeks.SelectedValue = Convert.ToString(4);
   }

   // retrieve the data
   DataSet ds = DataTier.DynamicCategorySalesByWeek(
    Convert.ToDateTime(txtStartingDate.Text)
    , Convert.ToInt32(ddWeeks.SelectedValue)
    );

   // our datagrid has AutoGenerateColumns set to False; we'll
   // add columns here so we can specify column formatting along the way
   foreach(DataColumn c in ds.Tables[0].Columns)
   {
    BoundColumn bc = new BoundColumn();
    bc.HeaderText = c.ColumnName.Replace("Week of ", "Week of <br />");
    bc.DataField = c.ColumnName;
   
    if (c.DataType != typeof(System.String))
    {
     bc.DataFormatString = "{0:#,##0.00}";
     bc.ItemStyle.HorizontalAlign = HorizontalAlign.Right;
     bc.HeaderStyle.HorizontalAlign = HorizontalAlign.Center;
    }
   
    DataGrid1.Columns.Add(bc);
   }

   // bind the data
   DataGrid1.DataSource = ds;
   DataGrid1.DataBind();

  }

  #region Web Form Designer generated code
  override protected void OnInit(EventArgs e)
  {
   //
   // CODEGEN: This call is required by the ASP.NET Web Form Designer.
   //
   InitializeComponent();
   base.OnInit(e);
  }
 
  /// <summary>
  /// Required method for Designer support - do not modify
  /// the contents of this method with the code editor.
  /// </summary>
  private void InitializeComponent()
  {   
   this.Load += new System.EventHandler(this.Page_Load);

  }
  #endregion
 }
}


DataTier.cs是连接数据库的类,全部内容如下:

using System;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;

namespace DynamicSalesByWeek
{
 /// <summary>
 /// Summary description for Class1.
 /// </summary>
 public class DataTier
 {
  public DataTier()
  {
   //
   // TODO: Add constructor logic here
   //
  }

  public static SqlConnection GetConnection()
  {
   // get the connection string from web.config
   string sCon = ConfigurationSettings.AppSettings["ConnectionString"];
   return new SqlConnection(sCon);

  }

  public static DataSet DynamicCategorySalesByWeek(DateTime startingDate, int numWeeks)
  {
   using (SqlConnection con = GetConnection())
   {
    SqlCommand cmd = new SqlCommand("DynamicCategorySalesByWeek", con);
    cmd.CommandType = CommandType.StoredProcedure;

    // add parameters
    cmd.Parameters.Add("@startingDate", startingDate);
    cmd.Parameters.Add("@numWeeks", numWeeks);

    // execute via a DataAdapter and return the results as a DataSet
    SqlDataAdapter da = new SqlDataAdapter(cmd);
    DataSet ds = new DataSet();
    da.Fill(ds);
    return ds;   
   }
  } }
}

Web.config的全部内容如下:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>

  <appSettings>
    <add key="ConnectionString"
         value="Data Source=(local); Initial Catalog=Northwind; Trusted_Connection=true" />
  </appSettings>
   
  <system.web>
    <compilation
         defaultLanguage="c#"
         debug="true"
    />
    <customErrors
    mode="RemoteOnly"
    />
    <authentication mode="Windows" />
    <authorization>
        <allow users="*" />
    </authorization>  
    <trace
        enabled="false"
        requestLimit="10"
        pageOutput="false"
        traceMode="SortByTime"
  localOnly="true"
    />
    <sessionState
            mode="InProc"
            stateConnectionString="tcpip=127.0.0.1:42424"
            sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
            cookieless="false"
            timeout="20"
    />  
    <globalization
            requestEncoding="utf-8"
            responseEncoding="utf-8"
   />  
 </system.web>
</configuration> 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值