iMIS Web Controls

How to remove "Messages" text from Password recovery page

Hello, does anyone know how to remove the "Messages" text from the password recovery page? This is displayed on the message iMIS gives after you enter your username. There is a block of text on this page that iMIS lets us update via the admin panel, and that is fine, but there is a title here called "Messages" that we cannot access and our client would like us to change it.

Any help would be much appreciated.

Finder control

Greetings everyone,

I'm trying to wrap my head around the Finder control.    I can't seem to find any good examples of how to implement it in conjunction with business objects

I was wondering if there would be any insight/guidance or code examples in the community.  When I implement it, I get a "select" link with a message that nothing has been selected.

Smart Control to Business Object Data Source binding question

Greetings,

I've been reading documentation found here concerning the SmartControl and Business Objects.  I've read about writing typed classes to represent the BO. 

I'm primarily interested in binding the smart control to the CsContact business object.  I see I can accomplish a lot of the coding in conjunction with IBO.net.

I'm just looking for a little clarification on what smart control properties need to be set  in order for the binding to work.   I understand there is a BoundPropertyName

Change Titles on Public View .aspx Page

Is there a way to edit the mycart.aspx page to change where it says 'Dues' here in iMIS15 public view?

Using OAuth with iMIS - Logon with Facebook or twitter

I have been asked by an AE whether it would be possible for us to create a custom login page for iMIS that allowed users to login to iMIS using either their Facebook, google or twitter credentials, 

All these apps now use OAuth 2 - which I have been reading about here developers.facebook.com/docs/authentication/.  and here oauth.net/2/

public views login integration with separate website

We would like our members to login into our association website but be instantly logged in our public view system without logging in twice.My concern is that we do not have access to the source code within the public view system, only the compiled version.

So my question is there any way technically that this can happen without touching the public view system.

Tracking Session ID in WCM

We're trying to track someone's path in WCM.   

The .NET session id (HttpContext.Current.Session.SessionID)does not get reset when someone logs in or out of WCM.  We need to recognize separate logins as separate visits.

Is there something in iMIS that we can use for this? something like Asi.ContentManagerNet.SessionState.SessionID

We want to consider each login to WCM to be a unique activity.

ASIUtil.CCyrypto

Our company has this website developed in-house many years ago now. It basically is for our sales team to keep track of their retention meetings and such It doesn’t really tie too much into the iMIS database, except I think it grabs member data, such as company, phone, etc. The login in part of this website uses a hash to read the user password. I’m not sure for what reason, but it seems it calls a couple ASI related DLLs called ASIUtil.CCrypto, and OmniHash.

asiweb in the toolbox?

I got home and tried out the iParts examples with my team and bumped into an unexpected surprise: it doesn't appear that I can access the asiweb controls from the toolbox in Design mode.

That means I can't:

  • See a list of controls in the toolbox
  • Drag and drop a control onto my iPart
  • Double-click a control to create and bind a default event (_Click or _Change)
  • Right-click the tag in Markup view and get options I get for ASP.NET controls.
  • Refactor>Rename the control in Source view and update the markup automatically.

Is there some way I can educate Visual Studio about the existence of these controls so I can work with them more naturally?  I hope I'm not forgetting something obvious.

Method to Set LookupCodeDescription

This was an easy function to use GetLookupCodeDescription.

 

Is there a method to write to the gen_tables?

Is there a BO like

 Asi.Business.BusinessContainer container = new Asi.Business.BusinessContainer();
     Guid groupTypeKey = Asi.Business.Common.GroupType.iMISModuleUsers;         
     Asi.Business.Common.GroupController controller = Asi.Business.Common.GroupController.NewGroupController(container);
     Asi.Business.Common.Group newGroup = controller.Add(groupTypeKey);
     Asi.Business.Common.Group newCommitteeGroup = controller.Add(groupTypeKey);
     newGroup.Name = "My New Group";
     newGroup.Description = "Group for managing contacts";
     newGroup.Commit();