?? buypaymentprint.aspx.cs
字號:
?//文件名:BuyPaymentPrint.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 BuyManage_BuyPaymentPrint : System.Web.UI.Page
{
private BuyManage_BuyPaymentForm MyPrintForm;
protected void Page_Load(object sender, EventArgs e)
{//打印商品采購付款信息
if (Session["MyCompanyName"] != null)
{
this.Label1.Text = Session["MyCompanyName"].ToString() + "商品采購付款單";
}
this.Label2.Text = "打印日期:" + DateTime.Now.ToShortDateString();
MyPrintForm = (BuyManage_BuyPaymentForm)Context.Handler;
this.Label3.Text = "采購付款單號:" + MyPrintForm.MyPrint采購付款單號;
this.Label4.Text = "客戶名稱:" + MyPrintForm.MyPrint客戶名稱;
this.Label5.Text = "應付金額:" + MyPrintForm.MyPrint應付金額;
this.Label6.Text = "實付金額:" + MyPrintForm.MyPrint實付金額;
this.Label7.Text = "經辦人員:" + MyPrintForm.MyPrint經辦人員;
this.Label8.Text = "支付方式:" + MyPrintForm.MyPrint支付方式;
this.Label9.Text = "支付日期:" + MyPrintForm.MyPrint支付日期;
this.Label10.Text = "補充說明:" + MyPrintForm.MyPrint補充說明;
this.Label11.Text = "開戶銀行:" + MyPrintForm.MyPrint開戶銀行;
this.Label12.Text = "銀行賬戶:" + MyPrintForm.MyPrint銀行賬號;
if (Session["MyUserName"] != null)
{
this.Label31.Text = "操作員:" + Session["MyUserName"].ToString();
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -