Skip to content

Instantly share code, notes, and snippets.

@contensis
Created April 8, 2015 14:24
Show Gist options
  • Save contensis/903e53cbe214e8aaf1c3 to your computer and use it in GitHub Desktop.
Save contensis/903e53cbe214e8aaf1c3 to your computer and use it in GitHub Desktop.
An example of using the UpdateFormPost method in Contensis R8.2
protected override HttpResponseMessage Post(NameValueCollection formValues)
{
// do something useful with the post
formValues["Hidden Field"] = "New Value";
formValues["Transaction Id"] = GetTransactionId();
UpdateFormPost(formValues);
// return relevant response to user
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment