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

📄 show.aspx.cs

📁 走吧旅游网站前后台源代码
💻 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;

namespace Maticsoft.Web.Hotel
{
    public partial class Show : System.Web.UI.Page
    {        
        		protected void Page_LoadComplete(object sender, EventArgs e)
		{
			(Master.FindControl("lblTitle") as Label).Text = "详细信息";
		}
		protected void Page_Load(object sender, EventArgs e)
		{
			if (!Page.IsPostBack)
			{
				if (Request.Params["id"] != null || Request.Params["id"].Trim() != "")
				{
					string id = Request.Params["id"];
					ShowInfo(int.Parse(id));
				}
			}
		}
		
private void ShowInfo(string HotelID)
{
	Maticsoft.BLL.Hotel bll=new Maticsoft.BLL.Hotel();
	Maticsoft.Model.Hotel model=bll.GetModel(HotelID);
	this.lblHotelName.Text=model.HotelName;
	this.lblHotelEN.Text=model.HotelEN;
	this.lblSpellCode.Text=model.SpellCode;
	this.lblBusinessID.Text=model.BusinessID;
	this.lblRegionID.Text=model.RegionID;
	this.lblHotelType.Text=model.HotelType;
	this.lblHotelStars.Text=model.HotelStars;
	this.lblRating.Text=model.Rating;
	this.lblIntroduction.Text=model.Introduction;
	this.lblPicture.Text=model.Picture;
	this.lblUserRating.Text=model.UserRating;
	this.lblEMap.Text=model.EMap;
	this.lblVenderID.Text=model.VenderID;

}

    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -