摘要:
例如: 1. A.aspx用了一个叫MasterPage.master的母板页。 MasterPage.master.cs里定义了一个 int 型的变量 flag = 1 如何在A.aspx.cs里读出flag变量的值呢? 在 Page_Load 事件中添加如下代码: ((MasterPage)Pa例如: 1. A.aspx用了一个叫MasterPage.master的母板页。 MasterPage.master.cs里定义了一个 int 型的变量 flag = 1 如何在A.aspx.cs里读出flag变量的值呢? 在 Page_Load 事件中添加如下代码: ((MasterPag... 阅读全文
摘要:
母模版:C#代码:public partial class MasterPage : System.Web.UI.MasterPage{ public int UserId { get { return 342; } } public string UserName = "shenjk"; protected void Page_Load(object sender, EventArgs e) { }}在页面中获取该值:C#代码: protected void Page_Load(object sender, EventArgs e) { PropertyInfo ... 阅读全文
摘要:
TextBox myemail = (TextBox)this.Page.Master.FindControl("show").FindControl("email");string email = myemail.Text;这2行代码让我找了2天,我一直认为是:TextBox myemail = (TextBox)this.Page.FindControl("email");string email = myemail.Text;总是一个错误:未将对象引用设置到对象的实例。 阅读全文