 |
|
มีวิธีเช็คค่า textBox ว่าตรงกับ database มั้ยคับ ช่วยทีคับ..... |
|
 |
|
|
 |
 |
|
ตัวอย่างนี้น่าจะใช้ได้คับ ลองประยุกต์ เอาน่ะคับ การเปรียบเทียบค่า จาก ฐานข้อมูล

Code (VB.NET)
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Try
If txtusername.Text <> "" And txtpassword.Text <> "" Then
Dim sql_login As String
sql_login = "SELECT BOSS_USER.* FROM BOSS_USER "
sql_login &= "WHERE BOSS_USER.BOSS_USERNAME = '" & Me.txtusername.Text & "'"
Cmd = New OracleCommand(sql_login, Conn)
dtReader = Cmd.ExecuteReader()
If dtReader.HasRows = False Then
Page.ClientScript.RegisterStartupScript(Page.GetType(), 0, "ShowMsg('ไม่พบข้อมูลชื่อผู้ใช้ !!');", True)
txtusername.Text = ""
txtusername.Focus()
txtpassword.Text = ""
Else
If dtReader.Read() Then
Dim Usrename As String
Dim Password As String
Usrename = dtReader.Item("BOSS_USERNAME") 'ค่าจากฐานข้อมูล
Password = dtReader.Item("BOSS_PASSWORD") 'ค่าจากฐานข้อมูล
If txtusername.Text = Usrename And txtpassword.Text = Password Then 'เปรียบเทียบว่าตรงกันใหม ถ้าตรงกันให้ทำ ข้างใน
Session("Username_per") = Usrename
Response.Redirect("Default_Boss.aspx", True)
Else
Page.ClientScript.RegisterStartupScript(Page.GetType(), 0, "showNodata('ชื่อผู้ใช้ หรือรหัสผ่านไม่ถูกต้อง กรุณาทำรายการใหม่ ');", True)
txtusername.Text = ""
txtusername.Focus()
txtpassword.Text = ""
End If
End If
End If
End If
Catch ex As Exception
Page.ClientScript.RegisterStartupScript(Page.GetType(), 0, "showNodata2('Exception : Database None Query...');", True)
End Try
End Sub
|
 |
 |
 |
 |
Date :
2012-07-08 15:07:55 |
By :
tttpongsak |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
มี code c# มั้ยคับ
|
 |
 |
 |
 |
Date :
2012-07-08 15:27:07 |
By :
pomcoe |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
c#.net อะคับ
พอดีเพิ่งเขียนได้ไม่กี่วันทีอะคับ
นี้เป็นโค๊ดนะคับ
คือผมอยากเพิ่มเงื่อนไขเช็ค ว่ารหัสพนักงานที่ป้อนจาก TextBox1 มันตรงกับ database มั้ย ถ้าตรงก้อให้โชว์ว่า ซ้ำ อะคับ
แต่ไม่รู้จะเทียบกันยังไงรหว่าง textBox1 กับ database
Code (C#)
//เพิ่มข้อมูล
private void adddata()
{
if (textBox1.Text == "")
{
MessageBox.Show("กรุณาป้อนรหัสพนักงาน !!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
textBox1.Focus();
}
else if (textBox2.Text == "")
{
MessageBox.Show("กรุณาป้อนชื่อพนักงาน !!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
textBox2.Focus();
}
else if (textBox3.Text == "")
{
MessageBox.Show("กรุณาป้อนที่อยู่ !!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
textBox3.Focus();
}
else if (textBox4.Text == "")
{
MessageBox.Show("กรุณาป้อนเบอร์โทร !!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
textBox4.Focus();
}
else if (textBox6.Text == "")
{
MessageBox.Show("กรุณาป้อนเงินเดือน !!", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
textBox6.Focus();
}
else
{
// เพิ่มลงตารางที่ 1
con.Open();
SqlCommand com = new SqlCommand("insert into personal(id,name,salary,address)values(@id,@name,@salary,@address)", con);
com.Parameters.AddWithValue("id", textBox1.Text);
com.Parameters.AddWithValue("name", textBox2.Text);
com.Parameters.AddWithValue("address", textBox3.Text);
com.Parameters.AddWithValue("salary ", textBox6.Text);
com.ExecuteNonQuery();
com.Parameters.Clear();
con.Close();
// เพิ่มลงตารางที่ 2
con.Open();
SqlCommand com2 = new SqlCommand("insert into personal2(id,phone)values(@id,@phone)", con);
com2.Parameters.AddWithValue("id", textBox1.Text);
com2.Parameters.AddWithValue("phone", textBox4.Text);
com2.ExecuteNonQuery();
com2.Parameters.Clear();
con.Close();
}
}
|
ประวัติการแก้ไข 2012-07-08 17:47:57
 |
 |
 |
 |
Date :
2012-07-08 17:46:51 |
By :
pomcoe |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ได้แล้วคับ
ขอบคุณนะคับ
     
|
 |
 |
 |
 |
Date :
2012-07-08 18:18:36 |
By :
pomcoe |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
โค้ด Datagrid เขียนอย่างไรไม่ให้ค่าซ้ำกัน
ช่วยผมทีครับ
|
 |
 |
 |
 |
Date :
2017-08-21 10:39:15 |
By :
Man |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|