How can I override the webform language set by WorkflowGen’s user selected language?

It’s possible to override the web form language set by the WorkflowGen user’s selected language by creating your own CurrentCulture code in the code-behind.

For example, the C# code below manually sets the current web form to French Canada:

using System.Threading;
Thread.CurrentThread.CurrentCulture = new CultureInfo("fr-CA");