ASP.NET中在母版页定义了一个Button,我想用这个button控制另一个页面的Textbox,是否能实现,应该怎么写
ASP.NET中在母版页定义了一个Button,我想用这个button控制另一个页面的Textbox,该Textbox我设置了不可输入文本,我想点击button后使其可以...
ASP.NET中在母版页定义了一个Button,我想用这个button控制另一个页面的Textbox,该Textbox我设置了不可输入文本,我想点击button后使其可以输入文本。
是否能实现,应该怎么写。麻烦各位高手了,我刚学ASP.NET,是个菜鸟,还请包涵 展开
是否能实现,应该怎么写。麻烦各位高手了,我刚学ASP.NET,是个菜鸟,还请包涵 展开
2个回答
展开全部
//把下面的代码写在你的页中就行就了,我试了,完全可以的。
protected void Page_Load(object sender, EventArgs e)
{
Button Button1 = (Button)this.Master.FindControl("Button1");//Button1是用母版页上的一个button记住不在母版页上为它写任何的事件代码。
Button1.Click += new EventHandler(Button1_Click);
}
protected void Button1_Click(object sender, EventArgs e)
{
TextBox1.ReadOnly = false;
}
protected void Page_Load(object sender, EventArgs e)
{
Button Button1 = (Button)this.Master.FindControl("Button1");//Button1是用母版页上的一个button记住不在母版页上为它写任何的事件代码。
Button1.Click += new EventHandler(Button1_Click);
}
protected void Button1_Click(object sender, EventArgs e)
{
TextBox1.ReadOnly = false;
}
展开全部
你先把母版页拖到textbox页面
在pageload时间设置button属性
protected void Page_Load(object sender, EventArgs e)
{
this.TextBox1.Enabled = false;
}
protected void Button1_Click(object sender, EventArgs e)
{
this.TextBox1.Enabled = true;
}
在pageload时间设置button属性
protected void Page_Load(object sender, EventArgs e)
{
this.TextBox1.Enabled = false;
}
protected void Button1_Click(object sender, EventArgs e)
{
this.TextBox1.Enabled = true;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询