Tagged Questions
The asp.net-profiles tag has no wiki summary.
7
votes
1answer
948 views
MVC-Mini-Profiler - Web Forms - Can't find /mini-profiler-results
I'm trying to get MVC-mini-profiler to work with webforms.
NUGET
I've installed the Nuget package.
PM> Install-Package MiniProfiler
Head
I have this in the head section of my website.
...
6
votes
1answer
88 views
ASP.NET Profiles versioning?
How does ASP.NET profiles handle versioning? I know because the data is serialized this could be a problem where with tables it is not.
Will it throw some sort of serialization error?
Example: I ...
5
votes
4answers
463 views
ASP.NET Profile save overwritten by old values
I am using the Profile feature of ASP.NET in a website. Updating a profile is working weirdly! A user can't update his/her own profile, neither the web site user nor the administrator, but, the ...
5
votes
1answer
2k views
Profile Object + View Model + Updating User Profile MVC C#
Problem:
I have created a custom profile object as described by Joel here. I then used Jeremy's method (here) to extend the custom profile to allow me to use generate a user and set those values. I ...
4
votes
2answers
956 views
How to load the profile of a newly-logged-in user before the redirect
I started an ASP.NET MVC 2 project and I am building off of the code that was generated automatically.
The problem that I am experiencing is that after a user is logged in, it appears that the ...
4
votes
4answers
201 views
How can I wire users with their respective folders in ASP.NET?
When userA uploads a file, his files will be uploaded to folderA, when userB, to folderB, and so on. Roles/Profiles in ASP.NET. Folders will be pre-existing. Anyone?
3
votes
1answer
142 views
SQL aspnet_profile
any idea how I can get user FirstName and LastName from the aspnet_profile table based on UserID using SQL becasue I would like to use in Telerik Reporting as a user parameter.
Sample row (FirstName ...
3
votes
1answer
331 views
How to Query from Asp.Net Profile Properties using LINQ
I have Asp.net profile property Profile.Location, Gender etc
i need to get list of all users whose Location belongs to "London" and Gender = male
how do i perform a search on Asp.net Profile using ...
3
votes
2answers
376 views
Multiple profile providers
I have multiple profile providers and profile types:
ProviderA with ProfileA
and
ProviderB with ProfileB
They both use a different database. I want to be able to say:
ProfileB.Create(...), and the ...
2
votes
1answer
132 views
.net profile provider and custom profiles. The settings property '' was not found.
I've run into a bit of a pickle here. I have a custom profile that I used in two applications in the same solution. The first was a web application that I built to import a custom set of user profiles ...
2
votes
1answer
61 views
User showed as online when profile data accessed using Profile.GetProfile ASP.Net
I have a gridview with a list of my users (using the ASP.Net Membership and Profile providers) and I have managed to display all the fields I need. But the problem is that when I access the page that ...
2
votes
1answer
49 views
Passing profile data from anonymous user to logged in user
I'm trying to assign some value to user profile after a user create a membership (create an account), after logging in but before the next httprequest
Although, I try to sign-in/authenticate user ...
2
votes
1answer
211 views
SqlProfileProvider
I am trying to get SqlProfileProvider working with my own db, I have set up the db using aspnet_regsql and then the following web.config, yet the application keeps creating an aspnetdb and never ...
2
votes
1answer
100 views
ASP.NET MVC Url display problem
I have recently been experimenting with the profile features of ASP.NET. I am having trouble getting a "website" property to display correctly. For example, if the website I enter is: ...
2
votes
1answer
123 views
Are there more efficient alternatives to ASP.NET 2.0 anonymous Profiles?
I discovered ASP.NET profiles a few years back and found it quick and easy to implement some powerful functionality in my web site. I ended up exclusively using "anonymous" profile properties because ...
2
votes
1answer
208 views
ASP.NET Profile Data Cached?
Does the ASP.NET SQL Profile Provider use caching? I mean if I pull data from the profile for a user will it hit the DB for each request?
I'm looking for a setting or any information on this. I had ...
2
votes
2answers
177 views
Is it possible to access a profile without updating LastActivityDate?
In asp.net (using MVC, but this happens in regular too)
Profile.GetProfile(username);
will update the LastActivityDate for that user. This is not intended when someone else is viewing that user's ...
2
votes
1answer
439 views
How do you get asp.net anonymous authentication token for profile support?
So I have an asp.net Web Application (Not Web Site) that I am trying to support profiles for anonymous users. I have a form and I want anonymous users to be able to enter their name and email only ...
2
votes
2answers
775 views
Could not load type in Custom Profile provider
I am writing a small console application in C# that references a custom assembly that implements custom .net Profile provider. I have added the following sections to my app.config file which ...
2
votes
2answers
1k views
ASP.NET MVC Get a list of users with particular profile properties
I'm using ASP.NET MVC 1 and I have added a custom Profile class using the WebProfile Builder VS add-in (found here: ...
2
votes
1answer
103 views
Custom Providers & Design Patterns
I am using ASP.NET 2.0 and its various providers.
I have overridden most of the methods I need and
have the following custom providers:
ProjectMembershipProvider
ProjectProfileProvider
...
2
votes
1answer
130 views
Asp.net MVC Why should I bother with a Profile Provider?
I already have a database with about 20 fields of userprofile information. Im not sure what the advantage would be for creating a custom provider instead. Can someone explain what is the benefit? ...
2
votes
1answer
354 views
What are the PropertyValuesString and PropertyValuesBinary fields in the aspnet_Profiles table for?
I figured the PropertyValuesString was for the value part of what is usually the Key-Value pair of these types of object. But then where does the PropertyValuesBinary field come in if you've already ...
2
votes
2answers
840 views
Can't access custom profile properties from web.config?
I have the following two profile properties in my web.config file between the System.Web tags:
<anonymousIdentification enabled="true"/>
<profile>
<properties>
<add ...
1
vote
1answer
48 views
What is an anonymous username supposed to look like in a ProviderInfo object?
Per Microsoft's ProfileInfo definition http://msdn.microsoft.com/en-us/library/system.web.profile.profileinfo.aspx, an unauthenticated profileinfo object has a username; naturally this must be keyed ...
1
vote
0answers
22 views
User profile x permission to access pages
I'm using forms authentication to authenticate the users of my system.
The problem is the authorization, bellow, I have the table "Pages" wich is the resources of system. Every user has some profile ...
1
vote
1answer
32 views
Using Profiles in ASP.NET
Im new to using Profiles in vb.net and trying to figure out what im doing wrong. In webconfig I have the following code:
And in my vb code i'm trying to add to the profile ...
1
vote
1answer
58 views
ASP.NET 4 Profile problem
I hope someone can help me get over this probably simple problem.
I used to use ASP and up until recently had no need to move to .NET but now I have, I've realised that I've missed a huge development ...
1
vote
3answers
204 views
ASP.NET: How can I create a Login System using aspnet_regsql.exe?
I want to create a login system using aspnet_regsql.exe
After the aspnet_regsql.exe installiation in my SQL Server, then what should I do next?
Can someone explain me step by step after the ...
1
vote
1answer
24 views
Worth using ASP.NET profile class when using an ORM?
I am using Entity Framework 4.1 in an MVC 3 app. I am wondering whether there is any real value in using the built-in ASP.NET profile system (in System.Web.Profile). It's properties can't be queried ...
1
vote
0answers
158 views
Asp.Net Web Forms CodeFirst Profile Provider
I started this journey (now 2 days) trying simply to access a Membership User Profile based on the value of a Profile Property ('DisplayName') in a Asp.Net Web Forms project.
Most of you will know ...
1
vote
0answers
38 views
Should I use ASP.NET Profiles here?
I'm working on a rewrite of a website that has to pull its user data data from a third-party system accessed via remote objects. In the interest of standardization, I've implemented a custom ...
1
vote
2answers
118 views
How do I persist a user's profile in ASP.NET?
I am a newbie to ASP.NET - so what is the pattern to use Isolated Storage vs. Session state for web applications?
I have a use case where when a user logs into the application, I need to create his ...
1
vote
1answer
366 views
Is it a bad idea to use ProfileProvider in new MVC 3 app w/Entity Framework?
I've been trying to add a custom ProfileProvider class to my MVC 3 app with entity framework.I noticed its calling GetPropertyValues everytime I try and do something like:
profile.FirstName = ...
1
vote
3answers
61 views
Best way to check a setting in all profiles
Using ASP.net, is there a recommended best way to access a particular field of the profile in code. I was looking in my old Problem-Design-Solution 2.0 book, and it does it by pulling all members in ...
1
vote
1answer
23 views
Need explanation for CreateWizard and Profiles upon insertion into the database
I finally got the CreateWizard and Profile to work on my system, but I am having trouble understanding why properties in the profile are stored in the database the way it is. For example, everything ...
1
vote
1answer
300 views
ASP.NET Custom Profile Error
I have an issue with an ASP.NET profile implementation. This is my profile code:
public class UserProfile: ProfileBase
{
public static void Get()
{
return ...
1
vote
2answers
320 views
Adding System.Web reference to Business Logic Layer in n-layer Architecture
I'm using TableProfileProvider to use ASP.NET profile system in an n-layer architecture.
The UI layer is a web application so I have to expose the profilecommon class to be able to use profiles.
...
1
vote
1answer
338 views
Managing User Profiles in asp.net MVC2
I'm trying to add user management to a web app using .net MVC2, similarly to ProfileProvider: retrieve list of all profiles.
I'd like to display profile information (first name, last name) on the ...
1
vote
1answer
364 views
Getting user profile data in Silverlight 4
I am fairly new to Silverlight and RIA services, and I am trying to build a small project to understand it. So basically I created a Business Application, and I have the normal Login screen where I ...
1
vote
1answer
85 views
ASP.NET 2.0 Profiles - How do I prevent records from being created for users who don't accept cookies?
I am using ASP.NET profiles with allowAnonymous="true". I am NOT using ASP.NET membership. I recently took a hard look at the aspnetdb database and noticed that although my site gets 600-800 unique ...
1
vote
0answers
27 views
ASP.Net Profile blew up
I just completely revamped a database I'm using for a site I have under development. Now that I've done this, the Profile system isn't working. All the Profile.* stuff in my code-behind now shows a ...
1
vote
1answer
295 views
ASP.Net Profile Object in .Net 3.5
What is the best way to use to the Profile feature to store a users last 10 searchs.
Basically I need some kind of circular array, but not sure how to implement. One option is to write a static ...
1
vote
1answer
132 views
Profile access in ASP.NET web services
ASP.NET profile properties are trivially available to the code-behind of an ASPX web page courtesy of the HttpContext.Current.Profile object.
In a .svc web service, how does one bring ProfileCommon ...
1
vote
1answer
95 views
Storing profile information for asp.net users in separate columns instead of 1 long column?
When you create profile information for an asp.net user, it creates all the property values in 1 field. This is not the easiest thing to query. Is there a way to tell it to store the values in ...
1
vote
1answer
826 views
Using a profile property of type List in .NET Membership
I'm working on a C# Webservice that needs to provide authentication as well as roles and profile management. I need each profile to have a property of type List. The profile section in the web.config ...
1
vote
2answers
701 views
ASP.NET ProfileBase.Create behavior when supplied with an existing username
When supplied with a username that already exists, does ProfileBase.Create return the ProfileBase associated with the existing user (and if the username does not exisit, creates a new user and returns ...
1
vote
1answer
120 views
Can anonymous and authenticated profiles coexist together in ASP.NET?
I'm trying to figure out exactly when the event Profile_MigrateAnonymous fires.
My best guess from just tracing through my code is that it fires when it detects BOTH an anonymous membership cookie ...
1
vote
2answers
536 views
Accessing asp.net Profiles from App_Code
I am creating a base class from which specific pages are going to be derived. That is, instead of inheriting my pages from System.Web.UI.Page, they're inheriting from MyPage (which in turn, inherits ...
1
vote
4answers
1k views
Update an existing user's profile in ASP.NET
I want to change an existing user's profile without having to create a new profile for the user. For example: I have a user name Usr1 and I want to change only his age, how do I do that?