Atlas Membership Management Upgrade (June CTP)
Monday 17 July 2006 @ 11:52 pm

Atlas Membership Management Upgrade

June CTP (Community Technical Preview)

Atlas is still in beta from Microsoft and because of this, code that worked in previous CTP versions of Atlas may not work with later CTP’s. This is exactly what happened with the version of the MSDN article built with the March CTP version of Atlas. The link below is to revised Atlas Membeship Management source.

Update Source For June CTP of Atlas
- Posted in ASP.NET 2.0, Atlas/AJAX  




4 Responses to “Atlas Membership Management Upgrade (June CTP)”

  1. Rajeev Windows XP Internet Explorer 6.0 Says:

    thanks

  2. maslam Windows XP Internet Explorer 6.0 Says:

    thank you for example

  3. Danny Windows XP Internet Explorer 6.0 Says:

    I want to add a rele management when list the members.so I add some code as below.it works,but it is very slowly.What’s the matter?
    foreach (MembershipUser mu in muc)
    {
    if ((returnAllApprovedUsers == true && mu.IsApproved == true) ||
    (returnAllNotApprovedUsers == true && mu.IsApproved == false))
    {
    if (rolename == null)
    {
    MembershipUserWrapper md = new MembershipUserWrapper(mu);
    memberList.Add(md);
    }
    else
    {
    string[] rolearray = rolename.Split(’|');
    string rolestr = null;
    foreach (string i in rolearray)
    {
    if (Roles.IsUserInRole(mu.UserName, i))
    {
    MembershipUserWrapper md = new MembershipUserWrapper(mu);
    memberList.Add(md);
    }
    }
    }
    }

  4. Sean Budlong Windows XP Internet Explorer 7.0 Says:

    MembershipEditorAtlasJuneCTP

    It’s an Atlas Web app. Specifically, the message is “Assertion Failed: Unrecognized tag script:textChangedBehavior
    Break into debugger?” There is a javascript file for textChangedBehavior already in a scriptlibrary folder. My app is a customized ASP.NET Personal Starter Kit, and Kellner’s app is a tool to manage users in a browser, without having to resort to the Configuration Tool in Visual Studio. Kellner’s app runs normally by itself. It throws this error message when I add his files to my own starter kit. I’ve added the Atlas-related lines from his web.config file, his App_Code, his Microsoft.Web.Atlas.dll file, as well as the .js file TextChangedBehavior. Thank you for any suggestions you can think of.

    This is a known problem, and the simple solution is described below.

    Peter, I found the answer on http://aspadvice.com/blogs/garbin/archive/2006/02/25/15360.aspx. And it works. Thank you for your interest.

    # re: An Atlas behavior to handle text changes
    Hi, Garbin & Peter Kellner:

    The problem Peter has is very easy to solve an has nothing to do with ATLAS.

    I have exactly the same problem and here is what you need to do to solve it:

    Just check that the ScriptLibrary Directory(The one that have TextChangedBehavior.js) and the aspx page are in the SAME Directory.

    It could be an “Admin” directory or the root directory of your Application.

    Hope this helps.

    Wednesday, July 19, 2006 7:20 PM by Jesus De La Cruz

Leave a Reply