⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bookingeatprint.aspx.cs

📁 C# + MYSQL 课程设计 ASP.NET 2.0数据库开发《餐饮消费管理系统》功能完整
💻 CS
字号:
//文件名: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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -