-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault.aspx.cs
More file actions
38 lines (32 loc) · 867 Bytes
/
Default.aspx.cs
File metadata and controls
38 lines (32 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
public partial class _Default : System.Web.UI.Page
{
BDoperation bd = new BDoperation();
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnEntrar_Click(object sender, EventArgs e)
{
string usuario = txtUsuario.Text;
string senha = txtSenha.Text;
if (bd.verificaLogin(usuario, senha) == true)
{
/* @todo Ajustar login */
Response.Redirect("pedido.aspx");
}
else
{
lblValida.Text = "Usuario ou Senha invalidos";
}
}
protected void btnCadastrar_Click(object sender, EventArgs e)
{
Response.Redirect("cadastro.aspx");
}
}