Advertisement
Guest User

Untitled

a guest
Feb 6th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. private void btnsubActionPerformed(java.awt.event.ActionEvent evt) {
  2. Connector kn = new Connector();
  3. kn.ConnectDB("thongtin");
  4. try
  5. {
  6. ResultSet rs = kn.Laydl("dangnhap", "Username ='"+txtu.getText().trim()+"'AND Password ='"+txtp.getText().trim()+"'");
  7. rs.last();
  8. if(rs.getRow()<=0)
  9. {
  10. JOptionPane.showMessageDialog(null, "Sai ten dang nhap hoac mat khau");
  11. return;
  12. }
  13. else
  14. {
  15. DSCV ds =new DSCV();
  16. ds.setVisible(true);
  17. this.setVisible(false);
  18. }
  19. }
  20. catch(Exception e)
  21. {
  22. JOptionPane.showMessageDialog(null, "Loi dang nhap !");
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement