关于visual studio2005 如何获得二次载入的TextBox.Text值
visualstudio2005中,pageload事件我通过设定Session引出数据库的一条记录(行有多值),建立Table(如treason.Text=ds.Tab...
visual studio2005中,pageload事件我通过设定Session引出数据库的一条记录(行有多值),建立Table(如treason.Text = ds.Tables["getrecord"].Rows[0][2].ToString();)将值赋到各个TextBox.Text中,设定Enable为FALSE;可以看到记录在TextBox上不可用。在Botton(新建)事件设定各TextBox.enable=True;然后输入文本字符。在Botton(保存)设定各TextBox.enable=false。结果就是各TextBox.Text的值为仍为Table赋予的值,新输入的文本字符就被替换了。
我想知道如何将TextBox.Text值赋为空或者直接获得新输入的文本字符,谢谢大家!
谢谢2楼3楼,让我对这个问题有了初步认识,但是2楼仅写了初始化。。。具体不知道如何做,3楼用this.treason.Text = "Hello TextBox!";对treason.Text强行赋值,这个我也是知道的,我就是想知道如何将TextBox.Text值赋为空或者直接获得新输入的文本字符 展开
我想知道如何将TextBox.Text值赋为空或者直接获得新输入的文本字符,谢谢大家!
谢谢2楼3楼,让我对这个问题有了初步认识,但是2楼仅写了初始化。。。具体不知道如何做,3楼用this.treason.Text = "Hello TextBox!";对treason.Text强行赋值,这个我也是知道的,我就是想知道如何将TextBox.Text值赋为空或者直接获得新输入的文本字符 展开
2个回答
展开全部
//初始化
protected void Page_Load(object sender, EventArgs e)
{
if (!this.Page.IsPostBack)
{
//访问数据库.....
treason.Text = ds.Tables["getrecord"].Rows[0][2].ToString();
treason.Enabled = false;
Button1.Enabled=false;
}
}
protected void Button1_Click(object sender, EventArgs e)
{
string str=this.treason.Text;
//更新数据库.....
treason.Enabled = false;
Button1.Enabled=false;
}
--------------------------------------
pageload事件中的代码要在
if(!IsPostBack)
{
//初始化....
}
protected void Page_Load(object sender, EventArgs e)
{
if (!this.Page.IsPostBack)
{
//访问数据库.....
treason.Text = ds.Tables["getrecord"].Rows[0][2].ToString();
treason.Enabled = false;
Button1.Enabled=false;
}
}
protected void Button1_Click(object sender, EventArgs e)
{
string str=this.treason.Text;
//更新数据库.....
treason.Enabled = false;
Button1.Enabled=false;
}
--------------------------------------
pageload事件中的代码要在
if(!IsPostBack)
{
//初始化....
}
展开全部
同意楼上说的,当你单击Botton(新建)或Botton(保存),页面都会回发一次,这样执行Page_Load后,你的treason.Text 又被重新赋了旧值,所以...请看下面的代码.
protected void Page_Load(object sender, EventArgs e)
{
if (!this.Page.IsPostBack)
{
this.treason.Text = "Hello TextBox!";
this.treason.Enabled = false;
}
}
protected void Page_Load(object sender, EventArgs e)
{
if (!this.Page.IsPostBack)
{
this.treason.Text = "Hello TextBox!";
this.treason.Enabled = false;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询