I still can't find a way to use the login control, however for everyone else who's looked at this topic the login can be called programmatically with ValidateUser(username as String, password as String)
Example:-
If Membership.ValidateUser(TetBox1.Text, TextBox2.text) then
FormsAuthentication.RedirectFromLoginPage(TextBox1 .text,false)
Else
Label1.text="Invalid Username or Password"
End If
|