vote up 3 vote down star
1

The Asp.Net membership provider has some clear uses in a web app. I am thinking about trying to leverage some of the features in a windows application (more specifically WPF). Does anyone know if it is possible to use the core features in a windows app? I am mostly just looking for it to create my database tables, and maintain users, roles, and profiles. I obviously do not need to use the built-in web controls (e.g. Login).

flag

79% accept rate

4 Answers

vote up 1 vote down check

I have a winform app that talks to DotNetNuke (DNN). DNN uses the Asp.net membership provider, so the source will work for other apps that use that membership provider as well. It's a very simple app, so you should be able to read the source easily.

http://www.systemwidgets.com/Blog/tabid/61/articleType/ArticleView/articleId/138/categoryId/18/DotNetNuke-user-manager-Winform-App.aspx

You should be able to adapt the source to work with WPF.

link|flag
vote up 0 vote down

Yes, you can.

All the configuration can be done within app.config instead web.config of asp.net.

link|flag
vote up 0 vote down

I've used it.

link|flag
vote up 3 vote down

Yes. Membership, roles and profiles are all features of Visual Studio 2008 Client Application Services (Services tab of a project properties)

http://msdn.microsoft.com/en-us/library/bb384297.aspx

http://channel9.msdn.com/posts/DanielMoth/Client-Application-Services-with-Visual-Studio-2008/

link|flag

Your Answer

Get an OpenID
or

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