<form id="form1" runat="server">
<div>
<table align="center">
<tr>
<td>
<asp:Label ID="lblfname" runat="server" Text="First Name:"></asp:Label>
</td>
<td>
<asp:TextBox ID="txtfname" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="validate1" runat="server"
ControlToValidate="txtfname" ErrorMessage="*"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td>
<asp:Label ID="lblLname" runat="server" Text="Last Name"></asp:Label>
:</td>
<td>
<asp:TextBox ID="txtlname" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server"
ControlToValidate="txtlname" ErrorMessage="*"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td>
<asp:Label ID="lblemail" runat="server" Text="Email"></asp:Label>
:</td>
<td>
<asp:TextBox ID="txtemail" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server"
ControlToValidate="txtemail" ErrorMessage="*"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td>
<asp:Label ID="lblpass" runat="server" Text="Password"></asp:Label>
:</td>
<td>
<asp:TextBox ID="txtpass" runat="server" TextMode="Password"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator4" runat="server"
ControlToValidate="txtpass" ErrorMessage="*"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td>
<asp:Label ID="lblconpass" runat="server" Text="Confirm Password"></asp:Label>
:</td>
<td>
<asp:TextBox ID="txtconpass" runat="server" TextMode="Password"></asp:TextBox>
<asp:CompareValidator ID="CompareValidator1" runat="server"
ControlToCompare="txtpass" ControlToValidate="txtconpass"
ErrorMessage="Password mismatch"></asp:CompareValidator>
</td>
</tr>
<tr>
<td>
<asp:Label ID="lbldesig" runat="server" Text="Designation"></asp:Label>
:</td>
<td>
<asp:TextBox ID="txtdesig" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator5" runat="server"
ControlToValidate="txtdesig" ErrorMessage="*"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td>
<asp:Label ID="lbltexp" runat="server" Text="Total Exprience"></asp:Label>
:</td>
<td>
<asp:TextBox ID="txttexp" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator6" runat="server"
ControlToValidate="txttexp" ErrorMessage="*"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td>
<asp:Label ID="lbldob" runat="server" Text="Date of Birth"></asp:Label>
:</td>
<td>
<asp:TextBox ID="txtdob" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator7" runat="server"
ControlToValidate="txtdob" ErrorMessage="*"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td>
<asp:Label ID="lblmob" runat="server" Text="Mobile No:"></asp:Label>
:</td>
<td>
<asp:TextBox ID="txtmob" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator8" runat="server"
ControlToValidate="txtmob" ErrorMessage="*"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td>
<asp:Label ID="lblresume" runat="server" Text="Resume"></asp:Label>
:</td>
<td>
<asp:FileUpload ID="fileup_resume" runat="server" />
<asp:RequiredFieldValidator ID="RequiredFieldValidator9" runat="server"
ControlToValidate="fileup_resume" ErrorMessage="*"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td class="style1">
<asp:Button ID="btnsub" runat="server" Text="Submit" Width="86px"
onclick="btnsub_Click" style="margin-left: 21px" />
</td>
<td class="style1">
<asp:Button ID="btncan" runat="server" style="margin-left: 18px" Text="Cancil"
Width="77px" />
</td>
</tr>
</table>
</div>
</form>
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 Job_application : System.Web.UI.Page
{
SqlConnection conn = new SqlConnection("data source=PC\\SQLEXPRESS; user id=sa; password=password@123;initial catalog=Rohini;");
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnsub_Click(object sender, EventArgs e)
{
SqlCommand sqcom = new SqlCommand("select Email from jobseeker where Email='" + txtemail.Text.ToString().Trim() + "'", conn);
conn.Open();
SqlDataReader dr = sqcom.ExecuteReader();
string Email = "";
while (dr.Read())
{
Email = dr[0].ToString();
conn.Close();
}
if (Email == txtemail.Text.ToString().Trim())
{
//Label1.Visible = true;
// Label1.Text = "User alredy Exists please try with Other Email ID";
}
else
{
SqlConnection conn1 = new SqlConnection("data source=PC\\SQLEXPRESS; user id=sa; password=password@123;initial catalog=Rohini;");
conn1.Open();
SqlCommand scom = new SqlCommand("insert into Users values('" + txtfname.Text.ToString().Trim() + "','" + txtlname.Text.ToString().Trim() + "','" + txtemail.Text.ToString().Trim() + "','" + txtconpass.Text.ToString().Trim() + "','" + txtdesig.Text.ToString().Trim() + "','" + txttexp.Text.ToString().Trim() + "', '" + txtdob.Text.ToString().Trim() + "','" + txtmob.Text.ToString().Trim() + "')", conn1);
scom.ExecuteNonQuery();
conn1.Close();
txtemail.Text = "";
txtfname.Text = "";
txtlname.Text = "";
txtdesig.Text = "";
txttexp.Text = "";
txtmob.Text = "";
txtdob.Text = "";
fileup_resume.SaveAs(Server.MapPath("~/upload/" + fileup_resume.FileName));
}
}
}