温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:Asp.net房产中介管理系统源码及常用文档
当前文件路径:HouseManage/HouseManage/HouseLeasePrint.aspx.cs

1//文件名:HouseLeasePrint.aspx.cs 2
using System; 3
using System.Data; 4
using System.Configuration; 5
using System.Collections; 6
using System.Web; 7
using System.Web.Security; 8
using System.Web.UI; 9
using System.Web.UI.WebControls; 10
using System.Web.UI.WebControls.WebParts; 11
using System.Web.UI.HtmlControls; 12
13
public partial class HouseManage_HouseLeasePrint : System.Web.UI.Page 14
{ 15
private HouseManage_HouseLeaseForm MyPrintForm; 16
protected void Page_Load(object sender, EventArgs e) 17
{ 18
MyPrintForm =(HouseManage_HouseLeaseForm)Context.Handler; 19
this.Label3.Text = MyPrintForm.MyPrint房源编号; 20
if (Session["MyCompanyPhone"] != null) 21
{ 22
this.Label2.Text = "联系电话:" + Session["MyCompanyPhone"].ToString(); 23
} 24
if (Session["MyCompanyName"] != null) 25
{ 26
this.Label1.Text = Session["MyCompanyName"].ToString() + "出租房源"; 27
} 28
this.Label4.Text = MyPrintForm.MyPrint房屋位置; 29
this.Label5.Text = MyPrintForm.MyPrint付租情况; 30
this.Label6.Text = MyPrintForm.MyPrint建筑面积; 31
this.Label7.Text = MyPrintForm.MyPrint房型物管费; 32
this.Label8.Text = MyPrintForm.MyPrint家电家私; 33
this.Label9.Text = MyPrintForm.MyPrint配套设施; 34
} 35
} 36





}
}