📄 houseleaseprint.aspx.cs
字号:
//文件名:HouseLeasePrint.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 HouseManage_HouseLeasePrint : System.Web.UI.Page
{
private HouseManage_HouseLeaseForm MyPrintForm;
protected void Page_Load(object sender, EventArgs e)
{
MyPrintForm =(HouseManage_HouseLeaseForm)Context.Handler;
this.Label3.Text = MyPrintForm.MyPrint房源编号;
if (Session["MyCompanyPhone"] != null)
{
this.Label2.Text = "联系电话:" + Session["MyCompanyPhone"].ToString();
}
if (Session["MyCompanyName"] != null)
{
this.Label1.Text = Session["MyCompanyName"].ToString() + "出租房源";
}
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配套设施;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -