Tagged Questions

4
votes
3answers
2k views

Implementing Custom Profile Provider in ASP.NET MVC

Hi, I tried a lot on implementing a custom profile provider in ASP.NET MVC. I've read lots and lots of tutorials, but I can't find where is my problem. It's pretty similar to that question: …
1
vote
4answers
86 views

asp.net profile provider

I know there are already some questions on this topic on the site... I am just trying to understand if it's safe to use ASP.NET Profile Provider with a website with huge traffic? The way I see …
1
vote
3answers
93 views

Role based Profile data in asp.net ProfileProvider

I have defined a couple of different roles in my asp.net website : Administrators, DefaultUsers. Currently i use the built-in profile provider to store some information about the user (first name, …
0
votes
0answers
18 views

What is the ASP.NET security client services profile provider data type?

This seems to be a simple question, but I cannot find the answer after much searching. I have an application that uses the ASP.NET security system. The membership uses a …
0
votes
2answers
75 views

using custom Profile provider in ASP.net MVC?

Hello, im currently trying to implement a profile provider for my site a few days now and having a hard time working on it, im a php programer and i just shift to asp.net recently Im using Linq to …
0
votes
1answer
91 views

Profile Providers and Windows Authentication

All our inhouse projects use Active Directory authentication and impersonation as this is the accepted security policy for the company. I currently have a scenario where I need to store user profile …
0
votes
1answer
58 views

asp.net Profile Provider Search on specific property

I am using the SqlProfileProvider class in one of my projects and I would like to be able to search for profiles on an arbitrary profile property (e.g. Birthday). The only search method that I have …
0
votes
3answers
61 views

Should I store images with my profiles (sql profile provider)?

Hi all, I'm developing an intranet webapp in asp.net that has a requirement for storing user profile images. @edit: The webapp should be running in two different web servers at the same time. My …
0
votes
2answers
480 views

How to serialize System.Configuration.SettingsProperty

I need to serialize the System.Configuration.SettingsProperty and System.Configuration.SettingsPropertyValue class object through WCF.
0
votes
1answer
303 views

How to serialize SettingsContext and SettingsPropertyCollection

I need to serialize the System.Configuration.SettingsContext and System.Configuration.SettingsPropertyCollection types as i am implementing my own profile provider. Any suggestions on how to do it in …