Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Me.TextBox1.Focus()
End Sub
Protected Sub TextBox1_Keypress(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
Me.TextBox2.Focus()
End Sub
Protected Sub TextBox2_Keypress(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox2.TextChanged
End Sub
End Class
Tag : .NET, Ms SQL Server 2005, VS 2008 (.NET 3.x)
Date :
2010-12-14 09:48:43
By :
mubin
View :
1343
Reply :
2
No. 1
Guest
เบื้องต้นลองตรวจสอบ property หรือดูที่ tag ของ textbox2 ว่ากำหนดค่า autopostback = true หรือเปล่า ถ้ามีการ postback แล้วให้ดูที่ คำสั่งที่เขียน เท่าที่เห็น คือใน Event Page Load คุณไม่ได้ มีการ ตรวจสอบ IsPostBack == true เมื่อคุณไม่ได้ check ค่าดังกล่าวทำให้เมื่อมีการ post back ทุกครั้ง program จึงวิ่งเข้ามา ทำคำสั่ง me.textBox2.Focus() ตลอดครับ ทำให้ texBox2 เมื่อ enter แล้วไม่ถูก Focus