|
|
|
สอบถามเรื่องการให้ textBox.Text แสดงค่าอย่างต่อเนื่อง เป็นตัวเลขต่างๆต่อกัน |
|
|
|
|
|
|
|
Code (C#)
protected void btnOne_Click(object sender, EventArgs e)
{
this.txtTexbox.Text = "1";
}
protected void btnTwo_Click(object sender, EventArgs e)
{
this.txtTexbox.Text = "12";
}
|
|
|
|
|
Date :
2017-02-07 11:47:11 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอก๊อปมาจากคุณ mr.win น่ะครับ
แบบนี้หรือปล่าวครับ
Code
protected void btnOne_Click(object sender, EventArgs e)
{
this.txtTexbox.Text = "1";
}
protected void btnTwo_Click(object sender, EventArgs e)
{
this.txtTexbox.Text &= "2";
}
|
|
|
|
|
Date :
2017-02-07 13:53:53 |
By :
fonfire |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (C#)
protected void btnOne_Click(object sender, EventArgs e)
{
this.txtTexbox.Text = "1";
}
protected void btnTwo_Click(object sender, EventArgs e)
{
this.txtTexbox.Text += "2";
}
|
|
|
|
|
Date :
2017-02-07 18:06:44 |
By :
Guest |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มาเล่นด้วยคนครับ(เห็นคนเล่นกันเยอะ อิอิ)
Code (C#)
protected void btnOne_Click(object sender, EventArgs e)
{
this.txtTexbox.Text += "1";
}
protected void btnTwo_Click(object sender, EventArgs e)
{
this.txtTexbox.Text += "2";
}
|
|
|
|
|
Date :
2017-02-07 20:09:23 |
By :
lamaka.tor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2017-02-08 10:06:25 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|