vote up 1 vote down star

I have a web site that uses Asp.net forms authentication to login. I need to enable users to login and interact with the site via gadgets using the same authetnication/authorization schema I use on the site.

I could not find any good information regarding asp.net authentication and google gadgets.

How can I make the gadgets login using the forms authentication and then have the gadget remember them so they don't have to login every time?

flag

80% accept rate

1 Answer

vote up 0 vote down

One possible approach you could take is to have a checkbox in your login for "remember this logon" or something similar, and then using cookies to preserve your authentication state. One guide to doing this is the ff:

How to implement forms authentication in your ASP.NET application

The cookie, in turn, can save the login information that will be used for authenticating via the Google gadget API.

Needless to say there are security risks entailed, so be weary of those.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.