HOME > .NET Framework > Forum > ช่วยด้วยคร่ะ ทำแบบนี้ได้ไหมคร่ะ log in อ่าคร่ะ..MessageBox.Show("รหัสผ่านของคุณไม่ถูกต้อง กรุณาป้อนรหัสผ่านใหม่", "รหัสผิดพลาด");
ช่วยด้วยคร่ะ ทำแบบนี้ได้ไหมคร่ะ log in อ่าคร่ะ..MessageBox.Show("รหัสผ่านของคุณไม่ถูกต้อง กรุณาป้อนรหัสผ่านใหม่", "รหัสผิดพลาด");
string username1 = textBox1.Text;
string password1 = textBox2.Text;
string conStr = "Data Source=(local); Integrated Security=True; Initial Catalog=Trafficpolice ";
SqlConnection Conn = new SqlConnection(conStr);
Conn.Open();
String sql = "select * from Police where username1 = 'Pol_login' AND password1 = 'Pol_pass'";
SqlCommand cmd = new SqlCommand(sql, Conn);
string CurrentName;
CurrentName = (string)com.ExecuteScalar();
if (username1 == Pol_login && password1 == Pol_pass)
{
MessageBox.Show("ยินดีต้อนรับเข่าสู่ Traffic Police Application", "Welcome To Traffic Police Application");
welcome f = new welcome();
f.Show();
this.Hide();
}
else
MessageBox.Show("รหัสผ่านของคุณไม่ถูกต้อง กรุณาป้อนรหัสผ่านใหม่", "รหัสผิดพลาด");
}
ทำแบบนี้ได้ไหมคร่ะ log in อ่าคร่ะ
Tag : - - - -
Date :
2010-01-20 14:53:11
By :
เชอรี่
View :
1365
Reply :
3
No. 1
Guest
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace Login
{
public partial class loginform : Form
{
public loginform()
{
InitializeComponent();
}