Created
April 8, 2015 14:24
-
-
Save contensis/903e53cbe214e8aaf1c3 to your computer and use it in GitHub Desktop.
An example of using the UpdateFormPost method in Contensis R8.2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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