Last active
September 25, 2017 22:38
-
-
Save digitalParkour/555d5903fd88949b593c66bb66514f19 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| @using Community.Foundation.Mvc | |
| @model ExampleModel | |
| <div class="component"> | |
| <p>Form B</p> | |
| <form method="post"> | |
| @Html.MultiformPostProtection() <!-- Becomes: <input type="hidden" name="__FormToken" value="FormB" /> --> | |
| @Html.AntiForgeryToken() | |
| <input type="submit"/> | |
| </form> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment