Search

You searched for the word(s): userid:639129

Matching Posts

  • Re: CreateUserWizard cancel create user?

    In my implementation, I do an explicit delete when the insertion of additional data fails. I have a custom method "AddUserDetails" that adds the additional data and returns 1 if it's successful, otherwise 0. it behaves like this (will try using your code): CreateUserWizard cuw = (CreateUserWizard)sender; int insertStatus = 0; // add user details is a custom method that i made. parameters // depend on the information that you want to add insertStatus = AddUserDetails(); if (insertStatus
    Posted to Security (Forum) by jpcoliveros on 11/24/2009
  • Re: Problem: login in wizard fires ReturnURL

    I am wondering why you are putting a login control in a Wizard control. Wizard control works best in collecting information/data from user input in a sequential manner. If you want to control steps in a wizard control whether a user is logged in or not (thus what I think why a login control should exist in a wizard control step), you can do this through code behind.
    Posted to Security (Forum) by jpcoliveros on 10/29/2009
  • Re: When adding a new user with Membership.CreateUser, is not recording Password nor Role

    By default ASP.NET membership stores password in hashed format unless you override the default membership setting. The CreateUser method should be declared this way instead: CurrentUser = Membership.CreateUser(txtUsuario.Text, txtPassword.Text, txtEmail.Text, "Who created the program?", "Horacio", True, out Status); Also, before calling the Roles.AddUserToRole, validate first if the user has been created or not by checking if "CurrentUser" is null or not.
    Posted to Security (Forum) by jpcoliveros on 10/27/2009
  • Re: Setting Role to Create User Using CreateUserWizard...

    Can you post your web.config file, particularly the membership and connectionstring section. Likewise, have you modified the default membership provider definition?
    Posted to Security (Forum) by jpcoliveros on 10/11/2009
  • Re: Can't Login membership in live app

    [quote user="CDrag"] Suddenly, I noticed I can't login or authenticate a user on my live application. It works in Visual Studio and was working in the live but suddenly I don't seem to be able to authenticate a user. It checks and recognizes the user/password combination but it will not authenticate a user on the website. It will generate an error message if it is the wrong user name and will allow me to create a new user but suddenly it stopped authenticating users. I checked the
    Posted to Security (Forum) by jpcoliveros on 10/6/2009
  • Re: working with the visual studio "login" tools...

    [quote user="elidotnet"] Hello all, im looking for some answer for working with the visual studio 2008 "login" tools (the membership tools). Im still student and new in this area. i was created a membership in a web site and everything work fine. im tryin to figure something. After some user create his own membership trought the CreateUserWizard and make a login, the site recognize him has a member so far so good. I know how to show content to loggedin members by the loginView
    Posted to Security (Forum) by jpcoliveros on 9/27/2009
  • Re: Adding users to role after payment is made asp.net 2.0

    How do you facilitate acceptance of payment? Here are my suggestions: First, if the payment facility is a third party site, you should have at the least a webservice that can accept calls from the third party site (meaning the third party site will inform you) informing that a specific account has paid for membership. Your web service could be PaymentConfirmed(string userName, object transactionId, DateTime transactionDate) and this call automatically adds the user to the "PaidUsers" role
    Posted to Security (Forum) by jpcoliveros on 9/27/2009
  • Re: "Soap" at end of class name

    Bringing this one up. Here are the steps that I have used to come up with the scenario. I have a disco file that I have imported to my application as a web reference. This disco file references the web service addresses that I will be using for my application. I was able to generate the proxy classes, however whenever I instantiate class names, they have the "Soap" string at the end of the class names (e.g. Class1.cs when being accessed through the referenced through the web references
    Posted to XML Web Services (Forum) by jpcoliveros on 9/23/2009
  • Re: ASP.Net WSAT (Web Site Administration) Starter Kit. What happened?

    This is what I have used and customized for my own website. Have you given this a try?: http://aspnet.4guysfromrolla.com/articles/052307-1.aspx
    Posted to Security (Forum) by jpcoliveros on 9/18/2009
  • Re: if a user forgets password? want to prompt them for email address

    You can check on this entry on how to force reset the password without question and answer.: http://peterkellner.net/2007/02/15/resetpasswordaspnet/
    Posted to Security (Forum) by jpcoliveros on 9/15/2009
Page 1 of 38 (376 items) 1 2 3 4 5 Next > ... Last »