yearcheckprint.aspx.cs

来自「工资管理系统用C#和sql开发的」· CS 代码 · 共 46 行

CS
46
字号
//文件名:YearCheckPrint.aspx.cs
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

using System.Data.SqlClient;
public partial class CheckManage_YearCheckPrint : System.Web.UI.Page
{
    private CheckManage_YearCheckForm MyYearCheckForm;
    protected void Page_Load(object sender, EventArgs e)
    {//将查询结果输出到Excel文件中
        MyYearCheckForm = (CheckManage_YearCheckForm)Context.Handler;
        string MySQL = MyYearCheckForm.MyPrintSQL;
        this.Label1.Text = MyYearCheckForm.MyPrintTitle;
        this.Label2.Text = MyYearCheckForm.MyPrintDate + "  (考勤符号说明:出勤/,迟到>,早退< ,产假√, 事假#, 病假+, 婚假△, 旷工×)";
        string MyConnectionString = ConfigurationManager.ConnectionStrings["MyPersonnelDBConnectionString"].ConnectionString; ;
        SqlDataAdapter MyAdapter = new SqlDataAdapter(MySQL, MyConnectionString);
        DataSet MySet = new DataSet();
        MyAdapter.Fill(MySet);
        this.DataGrid1.DataSource = MySet;
        this.DataGrid1.DataBind();
        this.Response.ContentType = "application/vnd.ms-excel";
        this.Response.Charset = "";
        //关闭 ViewState
        this.EnableViewState = false;
        System.IO.StringWriter MyWriter;
        System.Web.UI.HtmlTextWriter MyWeb;
        //将信息写入字符串
        MyWriter = new System.IO.StringWriter();
        //在Web窗体页上写出一系列连续的HTML特定字符和文本
        MyWeb = new System.Web.UI.HtmlTextWriter(MyWriter);
        //将DataGrid中的内容输出到HtmlTextWriter对象中
        this.DataGrid1.RenderControl(MyWeb);
        //把HTML写回浏览器
        Response.Write(MyWriter.ToString());
    }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?