[BotFramework]: How to capture/extract the values submitted through Adaptive card rendered in C# Web Chat bot in a waterfall dialog?

Using Adaptive Cards with Waterfall Dialogs Natively, Adaptive Cards don’t work like prompts. With a prompt, the prompt will display and wait for user input before continuing. But with Adaptive Cards (even if it contains an input box and a submit button), there is no code in an Adaptive Card that will cause a Waterfall … Read more

Calling Forms from Dialogs

In order to initiate a FormDialog you can just do: var myform = new FormDialog<CreateNewLeadForm>(new CreateNewLeadForm(), CreateNewLeadForm.BuildForm, FormOptions.PromptInStart, null); context.Call<CreateNewLeadForm>(myform, FormCompleteCallback); Take a look to the PizzaBot for an example. To initiate new dialogs within a Dialog you can do: context.Call passing the instance of the new dialog and the completion callback (as in the … Read more

tech