Well I tried this:
http://www.beansoftware.com/ASP.NET-...Enter-Key.aspx
But I get this error:
The DefaultButton of 'PwdRecoveryPanel' must be the ID of a control of type
IButtonControl.
password recovery control in an asp panel as follows:
<asp:Panel id="PwdRecoveryPanel" runat="server"
DefaultButton="SubmitButton">
SubmitButton is the ID of the button in the recovery control. The recovery
control's ID is PasswordRecovery1. Funny thing is that I cannot even refer
to that button in my vb code. It doesn't come up in intellisense. I'm
wondering if that's the problem.
I tried this too and it didn't work:
<asp:Panel id="PwdRecoveryPanel" runat="server"
DefaultButton="PasswordRecovery1.SubmitButton">
Keith