Is it possible to autofill the username and password? I would like to pass the username and password from another site and then be able to log in to my new site that is using a .Net 2.0 Login control.
Another way I can think of is using the username & password which was passed in encrypted URL, write some login script in your new site, Hope it helps
If (Membership.ValidateUser(Username, Password)) Then
FormsAuthentication.RedirectFromLoginPage(Username, NotPublicCheckBox.Checked)
Else
Msg.Text = "Login failed. Please check your user name and password and try again."
End If
This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control
these sites and has not tested any software or information found on these sites; therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the
use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet.
Best Regards
XiaoYong Dai
Microsoft Online Community Support
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.
tigerDB
0 Points
1 Post
Autofill Login
Jun 13, 2007 09:33 PM|LINK
Is it possible to autofill the username and password? I would like to pass the username and password from another site and then be able to log in to my new site that is using a .Net 2.0 Login control.
Any ideas?
XiaoYong Dai...
All-Star
38310 Points
4229 Posts
Re: Autofill Login
Jun 15, 2007 08:29 AM|LINK
Hi
If it's asp.net application, you may use the Single Sign-On
http://blogs.neudesic.com/blogs/michael_morozov/archive/2006/03/17/72.aspx
Another way I can think of is using the username & password which was passed in encrypted URL, write some login script in your new site, Hope it helps
If (Membership.ValidateUser(Username, Password)) Then
This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites; therefore, Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet.FormsAuthentication.RedirectFromLoginPage(Username, NotPublicCheckBox.Checked)
Else
Msg.Text = "Login failed. Please check your user name and password and try again."
End If
XiaoYong Dai
Microsoft Online Community Support
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.