Thanks for the reply.
I checked into the links you provided and found that DotNetNuke Fast Login seemed to be the simplest. So I went with that... now I am stuck again.
In my Default.aspx page Page_Load event, I call a function that checks for a cookie then uses the following code from the fast login link...
Dim loginStatus As New Security.Membership.UserLoginStatus()
Dim objUserInfo As UserInfo = UserController.ValidateUser(0, "Test.User", "testuser1", "", "", Request.UserHostAddress, loginStatus)
'Login Error
If objUserInfo Is Nothing Then
Response.Redirect(noCookieURL)
Else
Response.Redirect("http://somesite.com/")
End If
After this code executes I am still not logged on to DNN. Can you tell me if there is a step that I am missing or point me in the right direction?
Thanks for any help,
Chris