How to assign Profile values?
I don’t know what I am missing, but I added Profile properties in the Web.config file but cannot access Profile.Item in the code or create a new profile.
I don’t know what I am missing, but I added Profile properties in the Web.config file but cannot access Profile.Item in the code or create a new profile.
I’ve set up two ASP.NET applications on a machine, their web.config files contain the same applicationName value in AspNetSqlMembershipProvider item so they share users and roles.
I am looking for a solution for user use the browser’s back button to navigate to previous page once logged out.
There are a few threads here at so about this matter but most of them are outdated and the reference links in them are even more outdated.
I have two asp.net applications on one IIS server and I would like to use the same back end asp_security database and membership provider. I’ve read that all I have to do is reference the same application name in both web configs as I’m doing now, but I must be doing something wrong
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).
ASP.NET MVC allows users the ability to assign permissions to functionality (i.e. Actions) at Design Time like so.
Designing a new application in asp.net 4 I have to make a decision how to use a MS SQL Membership API along with my own data in the MS SQL data base. Firstly I need to store and access user profile data in more flexible manner then the Profile provider supports. Secondly I would like to link other user related information (e.g. Orders).
I’m trying to avoid the use of the Role Provider and Membership Provider since its way too clumsy in my opinion, and therefore I’m trying to making my own “version” which is less clumsy and more manageable/flexible. Now is my question.. is there an alternative to the Role Provider which is decent? (I know that I can do custom Role provier, membership provider etc.)
I am using the default sql membership provider with ASP.NET and I would like to provide a page to change the user’s username. I believe I am sure I could do this with a custom provider, but can this be done with the default provider?