Search

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

Matching Posts

  • Re: Admin approval of new user registrations?

    Here is a good sample: Requiring email verification for new accounts
    Posted to Security (Forum) by Leijun Jie - MSFT on 2/2/2007
  • Re: Having problem with logout

    Hi cool5s, here is a sample: http://forums.asp.net/thread/1545778.aspx
    Posted to Security (Forum) by Leijun Jie - MSFT on 2/2/2007
  • Re: create user problem

    There are some attributes of the membership provider you can set to control the password validation, here is a good article on this: Changing the Password Complexity in ASP.NET V2.0
    Posted to Security (Forum) by Leijun Jie - MSFT on 2/2/2007
  • Re: Help with Login Control..pls!

    sankar07: Thanks for the reply Leijun Jie.I have made the connectionString point to the correct database and on the right instance. I have written this on my web.config (like mentioned in the article). <remove name="LocalSqlServer" /> <add name="LocalSqlServer" connectionString="Data Source=TSTServer;Initial Catalog=aspnetdb;Persist Security Info=False;User ID=xxxxx;Password=xxxxx"/> but i get that same error like above....what am i doing wrong?. Not sure why still can't find SQL Server
    Posted to Security (Forum) by Leijun Jie - MSFT on 2/2/2007
  • Re: forcing users login in different environments

    I think it's not easy to share login information between different browsers, since we often use Cookie to keep login information, which is peculiar to browser. Maybe you can remember the client's IP after the user logged in from some browser, and for other login requests from the same client you can just let him log in (can be done in Page_Load event so you don't need to input UserName/Password). This post should give you some thought: http://forums.asp.net/thread/1558704.aspx
    Posted to Security (Forum) by Leijun Jie - MSFT on 2/2/2007
  • Re: Might be a stupid question..

    You're welcome Thanks for Peter's great job!
    Posted to Security (Forum) by Leijun Jie - MSFT on 2/2/2007
  • Re: Login controls and Enter key

    I guess that's because the LgonButton is not in the Panel. Take a look at following section from MSDN: If the DefaultButton is set to a control that does not implement the IButtonControl interface, or to a control that is not contained in the Panel control, the Panel control throws an exception while rendering. For more information you can refer to: Panel.DefaultButton Property
    Posted to Security (Forum) by Leijun Jie - MSFT on 2/2/2007
  • Re: Integrated Windows Authentication problem

    Is the production server in a different domain from the domain where the web application resides?
    Posted to Security (Forum) by Leijun Jie - MSFT on 2/1/2007
  • Re: Role Management and SQL Express

    JCL2006: Is there a difference in these two ways of attaching a database? Why would one method work, and the other issue the 'used by other process' error? Thanks for your help! I guess there is alwasy an opening connection to the database file, may be opened by w3wp.exe(IIS worker process) and maintained by connection pooler. When Roles.CreateRole is called, the web application picks up a connection from the connection pool to perform tasks in SQL database; while when you try to establish connection
    Posted to Security (Forum) by Leijun Jie - MSFT on 2/1/2007
  • Re: content page session variables

    Hi may215, the Session_OnEnd event occurs when a session is abandoned or times out. I guess in your web application the session hasn't timed out yet so you can't see the Session_OnEnd fired. So the point here is to know when the browser it closed, then you can take a look at this Q&A post: HOW-TO: Reliably trap a web client disconnect! And this post gives a more detailed explanation on this: http://forums.asp.net/thread/1546093.aspx Search on the web and you'll find more information about this
Page 1 of 35 (347 items) 1 2 3 4 5 Next > ... Last »