using System; using System.Collections.Generic; //using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace Com.Jpsoft.Hospital.Web.Module.FllowUp.FollowUpRecord { public partial class Add : Com.Jpsoft.Hospital.Web.Common.BasePage//System.Web.UI.Page { protected override void OnInit(EventArgs e) { if (!IsPostBack) { base.AutoCheckRight = false; base.CheckRightParam = Com.Jpsoft.Hospital.Web.Common.PageFuntionType.Insert; } base.OnInit(e); } protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { if (!string.IsNullOrEmpty(Request.QueryString["patid"])) { this.txtCustomerID.Text = Request.QueryString["patid"]; } } } } }