DefaultButtons for Asp:Login and Asp:CreateUserWizard
Today, I was tasked with making some Asp:Login and Asp:CreateUserWizard controls work. Specifically, the enter button was acting with an effluence inherent only to Asp.net[1]: it was submitting the search button.
After playing with various schemes, I settled upon the following for the Login control:
<asp:Panel ID=”pnlLogin” runat=”server” DefaultButton=”lgMain$LoginButton”> <asp:Login runat=”server” ID=”lgMain” /> </asp:Panel>
I originally [...]

