bookingeatprint.aspx.cs

来自「C# + MYSQL 课程设计 ASP.NET 2.0数据库开发《餐饮消费管理系」· CS 代码 · 共 31 行

CS
31
字号
//文件名:BookingEatPrint.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;

public partial class BookingManage_BookingEatPrint : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {//打印客人用餐服务单
        if (Session["MyCompanyName"] != null)
        {
            this.Label1.Text = Session["MyCompanyName"].ToString() + "客人用餐服务单";
        }
        BookingManage_BookingEatForm MyPrintForm;
        MyPrintForm = (BookingManage_BookingEatForm)Context.Handler;
        this.Label3.Text = "用餐单号:" + MyPrintForm.MyPrint用餐单号;
        this.Label4.Text = "入座台位:" + MyPrintForm.MyPrint入座台位;
        this.Label5.Text = "客人人数:" + MyPrintForm.MyPrint客人人数;
        this.Label2.Text = "用餐日期:" + MyPrintForm.MyPrint用餐日期;
        this.Label6.Text = "用餐类别:" + MyPrintForm.MyPrint用餐类别;
        this.Label8.Text = "服务人员:" + MyPrintForm.MyPrint服务人员;
    }
}

⌨️ 快捷键说明

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