Get Autogenerated-page result

Hello Comunity!

How can get the result of imput in a autogenerated-page to use them in a script task?

 

Regards,

 

Like 0

Like

1 comments

Please set auto generated page output values into parameters of the business process and then use the parameters in the script task using the following syntax

get/set value in a business process script task

var parameter1 = Get<Guid>("Parameter1");

Set("Parameter2", parameter1.ToString());

var parameter2 = Get<string>("Parameter2");

get object of type UserConnection

var userConnection = Get<UserConnection>("UserConnection");

Show all comments