0% found this document useful (0 votes)
22 views3 pages

Set-B Rollno.34 Name: Dipesh Chaudhary: User Name Email Password Repassword D.O.B Mobile Country Choose Yours

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views3 pages

Set-B Rollno.34 Name: Dipesh Chaudhary: User Name Email Password Repassword D.O.B Mobile Country Choose Yours

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Set-B

Rollno.34
Name: Dipesh Chaudhary

<div>

<asp:Label ID="Label1" runat="server" Text="First Name"></asp:Label>


&nbsp;<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<br />
<asp:Label ID="Label2" runat="server" Text="Last Name"></asp:Label>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
<br />
User Name<asp:TextBox ID="TextBox3" runat="server"></asp:TextBox>
<br />
Email<asp:TextBox ID="TextBox4" runat="server"></asp:TextBox>
<br />
Password<asp:TextBox ID="TextBox5" runat="server"></asp:TextBox>
<br />
Repassword<asp:TextBox ID="TextBox6" runat="server"></asp:TextBox>
<br />
D.O.B<asp:TextBox ID="TextBox7" runat="server"></asp:TextBox>
<br />
Mobile<asp:TextBox ID="TextBox8" runat="server"></asp:TextBox>
<br />
Country<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem Value="-1">choose yours</asp:ListItem>
</asp:DropDownList>
<br />
Zip Code<asp:TextBox ID="TextBox9" runat="server"></asp:TextBox>
<br />
Gender
<asp:RadioButton ID="RadioButton1" runat="server" Text="male" />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<asp:RadioButton ID="RadioButton2" runat="server" Text="female" />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;
<asp:CheckBox ID="CheckBox1" runat="server" Text=" I agree with terms and
conditions" />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Submit" />

</div>
</form>
<p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp
;
</p>
</body>
</html>

namespace CA11
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

protected void Button1_Click(object sender, EventArgs e)


{
Response.Write("you have filled your information" + TextBox1.Text);

}
}
}

You might also like