[ASp.net #VB] การเช็คสถานะ คนล็อกอิน ทำยังไงแบบ ไม่ต้อง เลือก Type ครับ
คือตอนนี้ผม สามารถล็อกอินได้แล้ว แต่จะมี DropDownList มา ให้เลือก Type แล้ว เช็ค ว่า ชื่อนี้ รหัสนี้ ใช้ type นี้ไหมครับ
ดัง Code นั้
Code (VB.NET)
Dim strCommand As String = "Select [UserID] From [Member] Where [UserName]=@UserName AND [UserPassword]=@UserPassword AND [Typeid]=@Typeid "
Dim Command As New SqlCommand(strCommand, Connection)
Command.Parameters.AddWithValue("@UserName", userTextBox.Text)
Command.Parameters.AddWithValue("@UserPassword", passwordTextBox.Text)
Command.Parameters.AddWithValue("@Typeid", cbotype.SelectedValue.Trim)
Dim strCommand As String = "Select [UserID], [Typeid] From [Member] Where [UserName]=@UserName AND [UserPassword]=@UserPassword"
Dim Command As New SqlCommand(strCommand, Connection)
Command.Parameters.AddWithValue("@UserName", userTextBox.Text)
Command.Parameters.AddWithValue("@UserPassword", passwordTextBox.Text)
Dim Dt As New DataTable()
Dim adapter As New SqlDataAdapter(Command)
adapter.Fill(Dt)
If Dt.Rows.Count > 0 Then
Dim UserId As Integer = DirectCast(Dt.Rows(0)("UserID"), Integer)
Dim TypeID As Integer = DirectCast(Dt.Rows(0)("Typeid"), Integer)
End If