This tutorial will show you how to mark a form to not validate the input data for any HTML or […]
Updated on Kisan Patel
To avoid cross site scripting attack where a request to submitted to the form that is not originally the form […]
Updated on Kisan Patel
To perform Identity Authorization we need to add identity authentication in our project. Now you can add authentication for whole […]
Updated on Kisan Patel
To make an action method as a anonymous methods in secure controller, we can make that method as Anonymous method […]
Updated on Kisan Patel
To make all action methods public in secure controller, we just add [Authorize] before the controller starts. [Authorize] public class […]
Updated on Kisan Patel
To output any content (plain text or HTML text) from controller, we use ContentResult() like below. public ContentResult OutputContent() { […]
Updated on Kisan Patel
When, we need to pass some data from one action method to another method while redirecting the user to another […]
Updated on Kisan Patel
In previous Article i have give how to create Primarykey and Foreignkey relationship in MVC C# Your Link is HERE […]
Updated on Kisan Patel
To rename the Action method of the controller, we use ActionName attribute before the action method of the controller. For […]
Updated on Kisan Patel
This tutorial will explain you how to access form data into controller using request in asp.net mvc with example. We […]
Updated on Kisan Patel