The aspx file includes the following:
<asp:LoginVie w ID="LoginView1 " Runat="server">
<LoggedInTempla te>
<fieldset>
<asp:label id="message1" runat="server" />
The .vb file includes in a method
If (ChangePassword 1.CurrentPasswo rd.ToString() =
ChangePassword1 .NewPassword.To String) Then
Message1.Visibl e = True
Both Message1 and ChangePassword1 are reported to be "not declared"
The drop down list in the .vb file does not show them.
They were typed as shown, not draged from the toolbox.
The loginView1 does show in that drop down list.
Does any of this make sense to you?
Do you know what I have that is wrong?
Thanks in advance
<asp:LoginVie w ID="LoginView1 " Runat="server">
<LoggedInTempla te>
<fieldset>
<asp:label id="message1" runat="server" />
The .vb file includes in a method
If (ChangePassword 1.CurrentPasswo rd.ToString() =
ChangePassword1 .NewPassword.To String) Then
Message1.Visibl e = True
Both Message1 and ChangePassword1 are reported to be "not declared"
The drop down list in the .vb file does not show them.
They were typed as shown, not draged from the toolbox.
The loginView1 does show in that drop down list.
Does any of this make sense to you?
Do you know what I have that is wrong?
Thanks in advance
Comment