我有两个文本框,一个下拉菜单和两个按钮。当我在文本框中输入值时,从下拉列表中选择值并按button1
,我的数据将存储在数据库中,当我单击 时,我可以在我的网格中查看它button2
。
但问题是,当我在button2
不输入任何详细信息的情况下按下它时,它应该显示我在文本框和下拉列表中添加的验证错误。
aspx.cs 的代码:
protected void Button1_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(@"Data Source=.;Initial Catalog=EMS;Integrated Security=True");
con.Open();
string UserName = TextBox1.Text;
string Password = TextBox2.Text;
string Role = DropDownList1.Text;
using (SqlCommand cmd = con.CreateCommand())
{
cmd.CommandText = "insert into Login(UserName,Password,Role) values('" + UserName + "','" + Password + "','" + Role + "')";
cmd.Parameters.AddWithValue("@UserName", TextBox1.Text);
cmd.Parameters.AddWithValue("@Password", TextBox2.Text);
cmd.Parameters.AddWithValue("@Role", DropDownList1.Text);
cmd.ExecuteNonQuery();
}
con.Close();
TextBox1.Text = string.Empty;
TextBox2.Text = string.Empty;
DropDownList1.Text = string.Empty;
TextBox1.Focus();
}
protected void Button2_Click1(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(@"Data Source=.;Initial Catalog=EMS;Integrated Security=True");
con.Open();
using (SqlCommand cmd = con.CreateCommand())
{
SqlCommand com = new SqlCommand("Select * from Login", con);
SqlDataAdapter sda = new SqlDataAdapter(com);
DataSet ds = new DataSet();
sda.Fill(ds);
GridView1.DataSource = ds;
GridView1.DataBind();
}
con.Close();
}
aspx 的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.style1
{
width: 100%;
height: 178px;
}
.style3
{
width: 87px;
}
.style4
{
width: 87px;
height: 110px;
}
.style5
{
height: 110px;
}
</style>
</head>
<body style="height: 387px">
<form id="form1" runat="server">
<div>
<tr>
<td class="style3">
User name</td>
<td>
<asp:TextBox ID="TextBox1" runat="server" style="margin-left: 0px"> </asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server"
ControlToValidate="TextBox1" ErrorMessage="Enter User Name" Font- Bold="True">*</asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td class="style3">
Password</td>
<td>
<asp:TextBox ID="TextBox2" runat="server" TextMode="Password"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server"
ControlToValidate="TextBox2" ErrorMessage="Enter Password" Font- Bold="True">*</asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td class="style3">
Select Role</td>
<td>
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem>Select One</asp:ListItem>
<asp:ListItem>Admin</asp:ListItem>
<asp:ListItem>Manager</asp:ListItem>
<asp:ListItem>User</asp:ListItem>
<asp:ListItem></asp:ListItem>
</asp:DropDownList>
<asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server"
ControlToValidate="DropDownList1" ErrorMessage="Select Role">*</asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td class="style4">
</td>
<td class="style5">
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Sumit" />
<asp:ValidationSummary ID="ValidationSummary1" runat="server" Height="65px" />
</td>
</tr>
</table>
</div>
<p>
<asp:Button ID="Button2" runat="server" onclick="Button2_Click1" Text="Show" />
</p>
<p>