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

📄 otherpaymentprint.aspx.cs

📁 小区物业管理系统源代码,密码:123456,
💻 CS
字号:
//文件名: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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -