Security :: Adding Fields To The Register User?

Jul 16, 2010

I'm using VS 2010 and have a default Register User page. I want to add a few more fields to the default user name, passwor, email.These fields need to be saved to a different table than the apsnet_Users table. I figured I could do this in the CreatedUser event but don't know how to access the text box controls I added - for example First name, last name and so on.

View 2 Replies


Similar Messages:

Security :: Adding Data Fields To The Aspnet_membership?

Jan 26, 2011

I added new profile in the webconfig file. Also added extra fields in CreateUserWizard.

Web config:

<system.web>
<authentication mode="Forms" />
<compilation debug="true" targetFramework="4.0" />
<pages theme="Theme1" />
<profile enabled="true">
<properties>
<add name="Country" type="string"/>
</properties>
</profile>
</system.web>

Cs code:

public void CreateUserWizard1_CreatedUser(object sender, EventArgs e)
{
Profile.Country = Text1.Text;
//also tried doing:
ProfileCommon p = (ProfileCommon)ProfileCommon.Create(CreateUserWizard1.UserName, true);
p.Country = Text1.Text;
p.Save();
}

The Profile/ProfileCommon gives me an error "missing assembly/Profile doesn't exsit"

View 1 Replies

Security :: Allow The User To Submit More Information With The Register Page?

Mar 4, 2010

I am new at ASP.Net, and feel hard searching the site...

I use ASP.Net Configuration Website to manage roles and students...

and I have made a "Register.aspx" page in my site which containt a CreateUserWizard control...

I am working on a site for my college that alow students to register and enters their own University ID, and maybe other informations...

So How to do that...

and also I want to make a Users Management Page Under my site (do't need to use ASP.Net Configuration Website to manage users)...

do I have to make that page with working with the users table directly or there is standard way doing that...

View 3 Replies

Adding New Fields To Create User Wizard?

Dec 9, 2010

i m trying to add new field named mobile in my create user wizard control for that in my web.config i add

profile
enabled ="true">properties>add
name ="Mobile"
type ="string"/>properties>profile>

in my create user wizard using edit template i add one textbox named 'txtmobile'

nd in my cs i write

CreateUserWizard2_CreatedUser
{
ProfileCommon p = (ProfileCommon)ProfileCommon.Create(CreateUserWizard2.UserName,
true);
TextBox txtM = ((TextBox)CreateUserWizard2.CreateUserStep.ContentTemplateContainer.FindControl("txtMobile"));
p.Mobile = txtM.Text;
//p.Mobile = ((TextBox)CreateUserWizard2.CreateUserStep.ContentTemplateContainer.FindControl("txtMobile")).Text;
p.Save();
}

but it throws the error of 'object reference' nd also let me know how to store that field in db?

View 1 Replies

Adding Fields After User Presses A Button?

Jun 29, 2010

I'm just starting out with ASP.NET and I'm not sure how to go about the following:users have to input a part number into a text field. Sometimes they only have to input 1 part number, sometimes 50. I want to have 1 text field where they input the first part number, and if they have another one, they press a "more" button. Then, a new text field appears right beneath the first one. IF they have more part numbers, they just press the more button again... Is there a way to do this? If so, can someone give me any tips or hints on how to approach this?

View 3 Replies

Security :: Creating A New User Register Form Manually Without CreateUserWizard Control?

May 4, 2010

i have following issue: I am creating a new user register form manually without CreateUserWizard control, and all works perfectly unitil I intentionaly (for test purposes) enter existing username (for example BLABLABLA) into username.textbox. After that i get my error message as expected that says "username BLABLABLA allready exist", now when I tray (as a future user who could be in the same situation) to correct the username and enter another one (for example TRATRATRA), it still gives me this error "username BLABLABLA allready exist!" This is the second day that I'm traying to solve this!

Here is a part of my code:

[Code]....

View 4 Replies

Security :: Want To Encrypt The Password Of The User Who Register On My Site And Also Decrypt It To Enable Him In Login Again.2?

Mar 19, 2010

am working on a new site and i want to do tothings for security1. I want to encrypt the password of the user who register on my site and also decrypt it to enable him in login again.2. I will make an online exams so I want to disable the user functions to hack the exams materials such as (print page, print screen , or even selecting data manual by mouse )I googled a lot about this matter I found java scripts to make this but what about the users who will disable scripts on their browsers. So I want to do this with C# Code.

View 4 Replies

Using Createuserwizard Control Adding Additional Fields To Create A User Registration Form

Mar 17, 2010

I want to create a user registration form, I used the CreateUserWizard control, and i intend to add more filed with the wizard interface, the fields were firstname,lastname, telephone all these with the textBox control and sex-male or female with a radioButton control, and upload photo with the FileUpload control.

After a successfull submit to the sql database, i should be able to retrieve all this informtion inluding the photo uploaded in another aspx page using any of the data control in y toolbox and resizein the photo to be 100/100 pixel size. pls could you write out the code (step by step details) to follow to implement all this in my asp.net 3.5 c# website. I have already created a table in my database, using userId as my ForeignKey.

View 1 Replies

Security :: Fields Not Cleared After Creating New User?

Nov 11, 2010

I have a wizard control with 3 wizard steps. 1 contains "create new user", 2 for user management grid control and 3 for another functionalities.My problem is.. I am able to create new user successfully and after clicking on continue button in create new user, the name, email id text fields are not getting cleared.

View 7 Replies

MVC :: Creating A Single Page With Both Login And Register Fields?

Jun 23, 2010

I'm tasked with creating a single page with both login and register fields. I'm still a little new to MVC, so I'm trying to figure out the best approach. To add complexity, I'm required to have 3 fields that will display above BOTH forms. A pair of radio buttons toggles whether the user is new or existing, and slides down the respective fields.

Should my model have all possible fields for both forms on the page? Is it possible to validate only certain fields that I specify? Is there a way, on the client side, to "hide" the fields I don't need submittted, but still allow me to toggle between the login and registration fields?

Should I have 2 separate forms for each and have a model for each? If so, is there an example somewhere? The 3 fields mentioned earlier may cause a problem, since they'll be outside the form.

[Code]....

View 5 Replies

Security :: Register New User - Login Failed "Server Error In '/' Application"

Feb 10, 2011

I created online store following MvcMusicStore tutorial in MVC 2. Used standard login view as shown in tutorial. I created database on new server and it's working well - I can search for albums etc. The problem is when I am trying to register new user - I am getting error listed below (can't log in too). I created new database using aspnet_regsql.exe. Server authentication is set to SQL Server and Windows authentication mode. Server Error in '/' Application. Login failed. The login is from an untrusted domain and cannot be used with Windows authentication. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.SqlClient.SqlException: Login failed. The login is from an untrusted domain and cannot be used with Windows authentication. Source Error:

[Code]....

Line 125:Line 126: MembershipCreateStatus status;Line 127: _provider.CreateUser(userName, password, email, null, null, true, null, out status);Line 128: return status;Line 129: }

[Code]....

View 3 Replies

Security :: Custom Fields Using The Create User Component?

Jul 19, 2010

I have searched everywhere and can't find a great solution. All I want to do is have about 40 extra fields that save to a SQL database when creating a new user. Will also need to keep the functionality of roles so I don't want to completely override the built in functions.

I have seen the ability to put the data into a profile, but as I understand that will not save to the database in a form that I could join/select against.

There's the ability to tie onto the end of the CreateUserWizard1_CreatedUser, but then it's an extra select/insert into a separate table. Would be nice if I could keep everything in 1 function and in 1 table.

So what is the best way to add a bunch of extra fields into the database when creating a new user?

View 3 Replies

Web Forms :: Customize Secondary Fields In Member Register Form?

Feb 15, 2011

i have one member register form and have to part,,one part is primary fields (name,username,pass)and secondary and important for me is secondary form(age,work,..)...i want to customize this secondary fields with admin to show to his users and register this customized fields,,how it do??

View 1 Replies

Security :: Adding User To Certain Roles?

Aug 24, 2010

I have setup ASP security in my application. I used the following tutorial, just wondering if someone can tell me how i can setup this up to allow the creation of a user?

http://weblogs.asp.net/scottgu/pages/Recipe_3A00_-Implementing-Role_2D00_Based-Security-with-ASP.NET-2.0-using-Windows-Authentication-and-SQL-Server.aspx

where to find or what to search on to find some example of how to add the option for adding users?

I have the above setup and its working, but only because of the accounts i created with my global.asax file.

I need to give the admins access to add a new user. Currently i can search on existing users and update them, but need to add the ability to add a new user.

View 4 Replies

Security :: Adding Domain User Roles To A Web App?

Jun 18, 2010

I want to make my domain administrators the administrators to my web application so that they are the only ones that can change content. All other users would simply be able to read the material. I am relatively new to web apps and I can not seem to find what I am looking for anywhere on the net.

View 2 Replies

Security :: Adding User To Membership And Roles?

May 7, 2010

Its very easy to add users to roles by using the in built controls. but how can add users through customized login controls?. i have tried using

//MembershipUser m = Membership.CreateUser(name, pass, null);

View 3 Replies

Security :: How To Register And Login (using A Different Login / Register Page)

Jul 1, 2010

I have a website that has a secure admin section with its own login page and a public area with another section that allows people to register and login (using a different login / register page). In my web.config file I have this entry <location path="MemberDetails.aspx">

View 11 Replies

Configuration :: Error On Register Directive Adding Ajax Toolkit .3.0 Or 3.5?

Dec 7, 2010

I have created an application using visual studio 2008 & ajax toolkit 3.5.I got error when i uploaded it on server . First error is display when page is load " master page is not displayed" when i remove inherits="" from directive, then second error is display as given beloServer Error in '/' Application.Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: Could not load file or assembly 'AjaxControlToolkit' or one of its dependencies. The system cannot find the file specified.

[Code]....

View 6 Replies

Security :: Adding Field To Membership User Table?

Jun 8, 2010

Is it possible to more fields in User table If yes, how to do that? share sample code. Do we we need to change any membership stored procedures?

View 3 Replies

Security :: After Adding New User With Membership.CreateUser Aspnet_membership Is Empty?

Aug 12, 2010

I have a problem with my membership management. I moved the aspnet membership database to my MSSQL server and I would like to create an add user form not using the CreateUserWizard (I would like to add more information then in the simple CUW). I've created the form and I would like to use the Membership.CreateUser method to add the user. After running the script (VB) the user is available in the aspnet_Users table, also in the aspnet_UserInRoles table but not in the aspnet_Membership table. I'm sure that something is wrong with the configuration, I just can't find what.

[Code]....

View 5 Replies

Web Forms :: When New User Register / Get Pre-designed Page From Where User Can Update Profile?

Apr 20, 2010

I am working on Social Networking Website. My problem is that

when new user will register he/she will get Pre-designed Profile page from where user can update profile.

View 5 Replies

VS 2008 When Admin Register New User The Site Logs In As The User Who Was Just Created

Mar 4, 2010

This is what I have in the RegisterUser.aspx and yet when the admin registers a new user, then on clickiing the register button, the site logs in as the user who was just created.

protected void CreateUserWizard1_CreatedUser(object sender, EventArgs e)
{
Roles.AddUserToRole((sender as CreateUserWizard).UserName, "Department");
}

View 4 Replies

MVC :: Unable To Register A New User ?

Nov 4, 2010

However, when I try and create a new user, I get an error message " "

When I debug the app, the call to _provider.CreateUser(userName, password, email, null, null, true, null, out status); fails and the status is "InvalidAnswer".

On the registration page, the error reports as "

The password retrieval answer provided is invalid.

public MembershipCreateStatus CreateUser(string userName, string password, string email)
{
ValidationUtil.ValidateRequiredStringValue(userName, "userName");
ValidationUtil.ValidateRequiredStringValue(password, "password");
ValidationUtil.ValidateRequiredStringValue(email, "email");
MembershipCreateStatus status;
_provider.CreateUser(userName, password, email, null, null, true, null, out status);
return status;
}
public MembershipCreateStatus CreateUser(string userName, string password, string email)

View 1 Replies

Security :: Allow Users To Register At Site And Login?

Feb 25, 2010

I'm at the point where I want to allow users to register at my site and then allow users to login, so I am trying to get a feel for how everyone is handling this use case.

View 1 Replies

MVC :: Page.user Info - Register User Logs Logs Table - Use Userid

Dec 28, 2010

i use formsauthentication for login. but i wanna register user logs logs table. i can access username page.user.identity.name, but how can use userid?

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved