Modify User Information / User Profile
I have been rooting around looking for the answer... with no luck...
I want to modify the User Information / User Profile collected,
for example delete MSN, AIM and Yahoo and add City, State and Zip.
Where is this? Is it right in front of my nose?
Thanks in advance, (again).
The table in the DB is the Community_Users table. You will have to either extend this table, or create a new table using a foreign key relationship to the users table to hold your new fields. You probably don't need to mod any stored proc though since the profile procedures use select * (bad design, but ...
Modify user profile information
Hi,I would like to modify the user profile information in the CSK and am struggling with how it all hangs together. Does somone have a step by step instruction for how to for example remove the ICQ field from the registration form ? I understand the database and stored procedures tasks, but need to understand the steps involved in changing the forms.Many thanksNiclas
the plact to start would be in the solution explorer in visual studio go to comunitystarterkit/engine/framework/users/from there it sounds like you need to remove what you dont want from the following .../components/prof...
How to store user profile information during create user?
Hi,
I'm just try to store user information during create user via CreateUserWizard that add Textbox, DropDownList and RadoButtonList. How to store data form control to UserProfile (via CreateUserWizard) ?
Note. I set DisableCreatedUser = true because want to proof user befor activate.
(Begining ASP.net V2.0, VB, VWD 2005 Express Edition)
Here is some example c# code that I have in the CreateUser event of the CreateWizard command. I also do some stuff after this but I think this is the code you are interested in.
protected void CreateUserWizard1_CreatedUser(objec...
How update or modify all users profile properties in one authenticated user!
How update or modify all users profile properties in one authenticated user!
Are you looking for a way to load the profile data for a user based on just their username, and then save the updated data back to the database? If so you use code like:
ProfileCommon p = Profile.GetProfile("some user name here");p.SomePropertyValue = "new value";p.Save();-Stefan----------------------------------------------------------This posting is provided "AS IS" with no warranties, and confers no rights....
How can I carry anonymous users profile information to authenticated user
HelloI can carry the anonymous users profile information like favourite team name etc but when the user logs in how can I carry the profile knowledge to the authenticated users profile.Good Nights
Please provide some more information about the hangup. At least I couldn't understand what exactly are you trying to achieve.
So simple... yet so effective.My "Life"ly Blog
You need to add the Profile_MigrateAnonymous event in your global.asax. Here's a sample: void Profile_MigrateAnonymous(object sender, ProfileMigrateEventArgs e)
{
//Migrate Profile
Profil...
User Profile Information
Just a quick question - I have been asked to build a games community portal for my current employer. User information is to include gaming platforms, basic contact information etc...Normally I just create a sql database table to hold all this info - I was thinking along the lines of (see below), my question is: is this the best way to store the data, or use the .net profile system.Any pointers would be really helpful. ThanksDave /* Create Table: dbo.Contact*/PRINT N'Table Created: dbo.Contact'GOIF NOT EXISTS (SELECT 1 FROM sysobjects WHERE name = N'Contact' AND TYPE = 'U&...
Profile Information of User
I have a static class and a static method within the class that I want to use to return the profile of a member. This is the method:public static ProfileCommon GetProfile(MembershipUser usr) { ProfileCommon userProfile = null; userProfile = userProfile.GetProfile(usr.UserName); return userProfile; }This is throwing an error so I am enquirying i...
User Profile Information
I'm trying to figure out a best method for keeping track of certain profile information about a user that has a membership profile (username, password, etc.). In particular the user is associated with a customerID that I use quite ofter in the querying of data. Any suggestions on the best way to keep this information handy? In the past I would keep it part of the session for the user, but now with the provider model and the personalization stuff I thought there might be a better way.Your comments are appreciated.Tyler
here is a sample of part of one of my stat...
Single Users Profile and All Users Profiles List
I've made a discussion forum. And I have also installed simply asp.net membership. Now I want after click on user link to redirect to the page with User's info.I have simply user "John" and user "Bob" and everyone can click on those names and will see page with informations stored in Profile (Like Profile.Name, Profile.Address). I have three simply question:1. How to show profile values of other User ? Like I wrote above.2. How to list all users with for example their e-mails ? I mean: UserLogin - UserName - UserMail3. Or the easier way is to make new table with those all information an...
How to update/modify a ADAM user/Group/Application using vb.net or c#.net
Hi I need help for update/modify a ADAM user/Group/Application using vb.net or c#.net RegardsMallikarjunaP.Mallikarjuna
Hi,you can take a look at this Microsoft support site: http://search.microsoft.com/search/results.aspx?view=en-us&st=a&na=84&qu=adam+update+group&qp=&qa=&qn=&c=4&s=0Also, when I think about ADAM/Active directory and doing something against this technology I think of LDAP queries, so this becomes: http://www.google.be/search?hl=nl&q=ldap+query+C%23&meta=Grz, Kris.Read my blog. Handy Firefox plugins fo...
Problems while porting .Net framework 1.0 (VB.Net) application to .Net Framework 1.1
Hello,
I have a ASP.Net web application,written in VB.Net,developed on .Net Framework 1.0 .I am trying to port it on to .Net framework 1.1.
For achieving this,I follow the following steps-
1.Open the project using the .vbproj file.
2.I am prompted with the conversion message "Do you want to convert the solution and all projects to .Net framework 1.1....."
3.I click "Yes"
4.I assume that the project is now converted.
5.I build the project & try to run it.
6.I get the following error -
Server Error in '/Consert.Net' Application. ...
A .NET Framework error occurred during execution of user-defined routine or aggregate -While creating a SQL SERVER 2005 Stored prodecure in VS.NET 2005
Running [dbo].[insertlogin] ( @log = hiten, @pas = hiten ).A .NET Framework error occurred during execution of user-defined routine or aggregate "insertlogin": System.Data.SqlClient.SqlException: Must declare the scalar variable "@Log".System.Data.SqlClient.SqlException: at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnectionSmi.EventSink.Pro...
Extracting User Profile Information
This may seem real stupid....has anyone created any mods that help with extracting certain or all user profile information out from CSK as controls to say a text file?
Minesh...
List of all users and their profile information
Hi there,Can anybody help me to get list of all users and their profile information ?Thanks a lot. ...