using System.Data.SqlClient; using System.Web.Configuration; using System.Text; public partial class Upload_TestAutoPostBack : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void TextBox1_TextChanged(object sender, EventArgs e) { if (System.Convert.ToInt32(Check(System.Convert.ToInt32(TextBox1.Text))) == 0) { Label1.Text = "NO"; } else { Label1.Text = "OK"; } } protected Object Check(int emp) { string strCon = WebConfigurationManager.ConnectionStrings["OfficeConnect"].ConnectionString; SqlConnection con = new SqlConnection(); con.ConnectionString = strCon; con.Open(); StringBuilder str = new StringBuilder(); str.Append("SELECT COUNT(EMP_ID) AS ANS"); str.Append(" FROM TB_HR_Emp"); str.Append(" WHERE EMP_ID ="+emp); SqlCommand com = new SqlCommand(str.ToString(), con); Object myCount = com.ExecuteScalar(); con.Close(); return myCount; } }
<asp:TextBox ID="TextBox1" runat="server" AutoPostBack="True" OnTextChanged="TextBox1_TextChanged"></asp:TextBox> <asp:Label ID="Label1" runat="server"></asp:Label>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง