otherpaymentprint.aspx.cs

来自「小区物业管理系统源代码,密码:123456,」· CS 代码 · 共 33 行

CS
33
字号
//文件名:OtherPaymentPrint.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 ChargeManage_OtherPaymentPrint : System.Web.UI.Page
{
    private ChargeManage_OtherPaymentForm MyPrintForm;
    protected void Page_Load(object sender, EventArgs e)
    {//打印其他费用收据信息
        if (Session["MyCommunityName"] != null)
        {
            this.Label1.Text = Session["MyCommunityName"].ToString() + "专用收款收据";
        }
        MyPrintForm = (ChargeManage_OtherPaymentForm)Context.Handler;
        this.Label2.Text = "收款日期:" + MyPrintForm.MyPrint收款日期;
        this.Label3.Text = "收据编号:" + MyPrintForm.MyPrint收据编号;
        this.Label4.Text = "交款人员:" + MyPrintForm.MyPrint交款人员;
        this.Label5.Text = "收款金额:" + MyPrintForm.MyPrint收款金额 + "元";
        this.Label6.Text = "收款形式:" + MyPrintForm.MyPrint收款形式;
        this.Label8.Text = "收款事由:" + MyPrintForm.MyPrint收款事由;
        this.Label9.Text = "收款人员:" + MyPrintForm.MyPrint收款人员;
        this.TextBox1.Text =MyPrintForm.MyPrint补充说明;
    }
}

⌨️ 快捷键说明

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