housesaleprint.aspx.cs
来自「一个房屋中介系统的源码」· CS 代码 · 共 36 行
CS
36 行
//文件名:HouseSalePrint.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_HouseSalePrint : System.Web.UI.Page
{
private HouseManage_HouseSaleForm MyPrintForm;
protected void Page_Load(object sender, EventArgs e)
{
MyPrintForm = (HouseManage_HouseSaleForm)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 + =
减小字号Ctrl + -
显示快捷键?