please, how can I add LoginForm to MasterPage? I Added LoginForm Control to MasterPage, but when I try click to another button, Validators in LoginForm show alerts… How Can I fix it please? 🙂
please, how can I add LoginForm to MasterPage? I Added LoginForm Control to MasterPage,
Share
The Master Page is not generally the place for a login form. What are you trying to accomplish with this?
If you want a user to be able to login from any page that inherits from that master then I would put the login in .ascx control and drop that on the page. You should then be certain to add the tag “validationGroup” to those controls. (see Validation Grouping on http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.login.aspx)
Cheers,
CEC