.ASPX-- I need help with a code for a button \"create an account\"that when it i
ID: 3818073 • Letter: #
Question
.ASPX-- I need help with a code for a button "create an account"that when it is clicked a new web form page opens when the "create an account" button is clicked. Everything in the form must be asp.
For example, the text box must be asp:TextBox I attached a picture.
ign Up of these o select School District First Name Name over the ns. NOTE: Last Name of from AL AK....wt. our Email e-mail Address address will your be Retype username Email Address All of ae Retype Password the where the T ect security a question What is your mothers maiden name? Type answer the to security question asp List of all A Security Cancel Create Account Figure 1.2 to s button you) in security questions the Clicking this of the project display a message "Work in Progress" as TA INPUT you are just figure 13 shown creating the page. THERE IS NO NEED To ANDExplanation / Answer
Hi, please find code of registration form below. link it to your main page.
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="VB.aspx.vb" Inherits="VB" %>
<!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 id="Head1" runat="server">
<title></title>
<style type="text/css">
body
{
font-family: Arial;
font-size: 10pt;
}
input
{
width: 200px;
}
table
{
border: 1px solid #ccc;
}
table th
{
background-color: #F7F7F7;
color: #333;
font-weight: bold;
}
table th, table td
{
padding: 5px;
border-color: #ccc;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<th colspan="3">
<h3>Sign up</h3>
</th>
</tr>
<tr>
<th colspan="3">
Select state or province of your school district
</th>
</tr>
<tr>
<td>
State/Province
</td>
<td>
<asp:TextBox ID="txtState" placeholder="Select state/province" runat="server"/>
</td>
</tr>
<tr>
<td>
District
</td>
<td>
<asp:TextBox ID="txtDistrict" placeholder="School District Name" runat="server"/>
</td>
</tr>
<tr>
<td>
First Name
</td>
<td>
<asp:TextBox ID="txtFirstName" placeholder="First Name" runat="server"/>
</td>
</tr>
<tr>
<td>
Last Name
</td>
<td>
<asp:TextBox ID="txtLastName" placeholder="Last Name" runat="server"/>
</td>
</tr>
<tr>
<th colspan="3">
Note: Your email will be your username
</th>
</tr>
<tr>
<td>
Email Address
</td>
<td>
<asp:TextBox ID="txtUsername" placeholder="Email Address" runat="server"/>
</td>
</tr>
<tr>
<td>
Retype Email Address
</td>
<td>
<asp:TextBox ID="txtUsername" placeholder="Retype Email Address" runat="server"/>
</td>
</tr>
<tr>
<td>
Password
</td>
<td>
<asp:TextBox ID="txtPassword" placeholder="Password" runat="server" TextMode="Password" />
</td>
</tr>
<tr>
<td>
Retype Password
</td>
<td>
<asp:TextBox ID="txtConfirmPassword" placeholder="Retype Password" runat="server" TextMode="Password" />
</td>
</tr>
<tr>
<th colspan="3">
Select a security question
</th>
</tr>
<tr>
<th colspan="3">
What is your Mother's Maiden name?
</th>
</tr>
<tr>
<th colspan="3">
<asp:TextBox ID="SecurityAns" placeholder="Type Your answer " runat="server" />
</th>
</tr>
<tr>
<td>
<asp:Button ID="Button1" Text="Cancel" runat="server" />
</td>
<td>
<asp:Button ID="Button1" Text="Create Account" runat="server" />
</td>
<td>
</td>
</tr>
</table>
</form>
</body>
</html>
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.