温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:明日供求信息网源码
当前文件:
MingriGongQiu/BackGround/DetailInfo.aspx.cs,打开代码结构图
MingriGongQiu/BackGround/DetailInfo.aspx.cs,打开代码结构图1using System; 2
using System.Data; 3
using System.Configuration; 4
using System.Collections; 5
using System.Web; 6
using System.Web.Security; 7
using System.Web.UI; 8
using System.Web.UI.WebControls; 9
using System.Web.UI.WebControls.WebParts; 10
using System.Web.UI.HtmlControls; 11
12
public partial class BackGround_DetailInfo : System.Web.UI.Page 13
{ 14
Operation operation = new Operation(); 15
protected void Page_Load(object sender, EventArgs e) 16
{ 17
//Response.Write(Request.QueryString["id"].ToString() + " " + Request.QueryString["type"].ToString()); 18
DataSet ds = operation.SelectInfo(Request.QueryString["type"].ToString(), Convert.ToInt32(Request.QueryString["id"].ToString())); 19
txtType.Text = ds.Tables[0].Rows[0][1].ToString(); 20
txtTitle.Text = ds.Tables[0].Rows[0][2].ToString(); 21
txtInfo.Text = ds.Tables[0].Rows[0][3].ToString(); 22
txtLinkMan.Text = ds.Tables[0].Rows[0][4].ToString(); 23
txtTel.Text = ds.Tables[0].Rows[0][5].ToString(); 24
} 25
} 26




Operation operation 
}
}