Search

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

Matching Posts

  • Re: DLL Sites and LDAP / Active Directory

    The web server that comes with Visual Studio run's as your credentials and that is why it works loally but not at the web site. You need to tell ASP.NET to force integrated security by denying all anonymous users. To do this simply add the following to your web.config file: < authorization > < deny users = " ? " /> </ authorization > Hope that helps.
    Posted to Security (Forum) by tmw06 on 4/3/2008
  • Re: Authentication Prompt Question.

    Windows Authentication seems to always prompt for a site with the following format: http://<mysitename>.domain.com. If you just go to the site as http://<mysitename> then it will not show the prompt. You can specify http://<mysitename>.domain.com as a safe site in the security settings under IE and it will no longer prompt.
    Posted to Security (Forum) by tmw06 on 1/19/2004
  • Re: Web User Control !!

    Use the Page.Findcontrol to find the control by name. This function returns a Control object and you can change the visibility then. Control myUserControl = Page.FindControl("_MyUserControl1"); if (myUserControl != null) myUserControl.Visible = false;
    Posted to Web Forms (Forum) by tmw06 on 9/20/2003
  • Re: RSA Cryptology problem

    Instead of encrypting with keys I would suggest doing a one-way hash using MD5.Create("somepassword"). Store the hashed value in your database. When a user logs on, take the password they entered and has that password and compare it to the hashed value in the database.
    Posted to Security (Forum) by tmw06 on 8/17/2003
Page 1 of 1 (4 items)