Search

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

Matching Posts

  • Re: Visual Web Developer Express 2010 (B2) - Delete All Breakpoints

    VWD Express defaults to Basic settings (you don't get prompted) so that's probably why you don't remember setting it . Yeah....now I remember that I was not prompted... Thanks for the info.
    Posted to Visual Studio 2010 Beta 2 (Forum) by guru_sarkar on 11/26/2009
  • Re: Login form problems: "Server Error in '/' Application."

    To use aspnet_regsql and configure web.config with MS SQL Server check this: http://www.asp.net/learn/security-videos/video-388.aspx Now if you have mySql and not Sql Provider....search for MySqlMembership provider and thats what you will need and not default AspNetSqlProvider.
    Posted to Security (Forum) by guru_sarkar on 11/26/2009
  • Re: How Do I: Use the aspnet_regsql to start using login control

    Are you getting any error message ? How you created your users ? Before modifying the web.config or after ? Check these : http://www.asp.net/learn/videos/video-06.aspx http://www.asp.net/learn/security-videos/video-388.aspx
    Posted to Security (Forum) by guru_sarkar on 11/26/2009
  • Re: asp.net configaration error

    after you create run aspnet_regsql you should adjust membership and connectionstring settings in your web.config. Check these: http://www.asp.net/learn/security-videos/video-388.aspx http://www.asp.net/learn/security/tutorial-04-vb.aspx
    Posted to Security (Forum) by guru_sarkar on 11/26/2009
  • Re: RoleManager enable and disable

    Can i enable or disable this roleMager from web.config. I need to disable it in one special example. Are you asking if you can change the 'enabled=true' programmatically to false ? We need more information on that special example.
    Posted to Security (Forum) by guru_sarkar on 11/26/2009
  • Re: Forgotten Password form

    are you using asp.net Membership provider ? The default loginControl does not do the job of password recovery. "Forgot My Password" is just a link that can take you to another aspx page. So under your customized login control add a Link - "Forgot My Password" ("forgotpassword.aspx"). If you are using membership provider ...you can make use of PasswordRecovery control on forgotpassword.aspx. http://www.asp.net/learn/security/tutorial-13-vb.aspx http://www.c-sharpcorner
    Posted to Security (Forum) by guru_sarkar on 11/26/2009
  • Re: ChangePassword Control... Help stopping success display C#

    Isnt there a way a to stop the success view from showing in the onchanged event? I don't think so there is any property that can stop showing SuccessTempalate of ChangePasswordControl. Only workaround to my knowledge: http://msdn.microsoft.com/en-us/library/system.web.security.membershipuser.changepassword.aspx 1: So what you can do is just use change password control markup if you want OR just create your own. 2: Call MembershipUser.ChangePassword Method manually and do your job. <table border
    Posted to Security (Forum) by guru_sarkar on 11/26/2009
  • Re: Membership.ApplicationName problem

    if you have roleManager and/or profile enabled....then check if you have set applicationName attribute for those providers. Make sure it is set to "/" for those providers as well.
    Posted to Security (Forum) by guru_sarkar on 11/26/2009
  • Re: Logging into the Application

    - Use FormsAuthentication + asp.net Membership provider. Check tutorials here: http://www.asp.net/learn/videos/video-06.aspx http://www.asp.net/learn/security/ http://www.asp.net/learn/security-videos/ There are tons of articles and videos for that.
    Posted to Security (Forum) by guru_sarkar on 11/25/2009
  • Re: Connecting to aspnetdb.mdf problem

    You will have to detach the aspnetDB from your local sqlExpress and attach it to the Sql server on your webhost. Then modify your connectionString according to format provided by your host. Check similar discussion here: http://forums.asp.net/t/1492046.aspx?PageIndex=2
    Posted to Security (Forum) by guru_sarkar on 11/25/2009
Page 1 of 254 (2533 items) 1 2 3 4 5 Next > ... Last »