asp.net - MobilePin createuserwizard doesn't work? -
i new asp.net , first time using membership controls in project.
here in project while creating new user need mobile number of user, how can enable mobilepin of createuserwizard. because saw mobilepin field in aspnet_membership
table thinking can add values mobilepin field front-end while creating new user.
can me?
i did code doesn't work
<asp:label id="mobile" runat="server" associatedcontrolid="mobilepin">mobile no:</asp:label> <asp:textbox id="mobilepin" runat="server" cssclass="textentry"></asp:textbox> <asp:requiredfieldvalidator id="requiredfieldvalidator1" runat="server" controltovalidate="mobilepin" cssclass="failurenotification" errormessage="mobile required." tooltip="mobile required." validationgroup="registeruservalidationgroup">*</asp:requiredfieldvalidator>
how make mobilepin in asp.net
membership value insert?
the error nothing asp.net membership.
rename textbox id mobilepin following -
<asp:textbox id="mobilepin" runat="server" cssclass="textentry"></asp:textbox>
Comments
Post a Comment