Hello Comunity!
How can get the result of imput in a autogenerated-page to use them in a script task?
Regards,
Like
1 comments
12:33 Mar 14, 2018
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