Reputation: 190
I'm getting this error on these two lines specifically.
Any ideas as to why? I've searched the threads and nothing seems to help me here.
<asp:TextBox runat="server" ID="Password" name="password" size="25" placeholder="Password" Width="300px"></asp:TextBox>
<asp:TextBox runat="server" ID="PasswordConfirm" name="passwordconfirm" size="25" placeholder="Confirm Password" Width="300px"></asp:TextBox>
Upvotes: 0
Views: 350
Reputation: 17485
Try this ( Remove name attribute)
<asp:TextBox runat="server" ID="Password" size="25" placeholder="Password" Width="300px"></asp:TextBox>
<asp:TextBox runat="server" ID="PasswordConfirm" size="25" placeholder="Confirm Password" Width="300px"></asp:TextBox>
Upvotes: 5