Hello,
I'm curious if there is anyone out there familiar with Microsoft Portals/Adxstudio. I recently read this https://community.dynamics.com/crm/f/117/t/219309 and I was wondering if there is still nothing supported / to be done with Web Form Steps of type User Control.
I can think of many things I would like User Controls for, but for right now I just want to fire off the equivalent of MoveToNextStep. Why do I want this? Previously you were not able to start a Web Form with a Web Form Step of type Condition. It seems to still be the case. The workaround was make the start step a User Control that would move to the next step (of type Condition). That's all I want. Liquid seems limited / not able to help on this. Does anyone have some input on this?
Old way:
public partial class NextStep : WebFormUserControl
{
protected override void OnInit(EventArgs e)
{
MoveToNextStep();
base.OnInit(e);
}
}
*This post is locked for comments