Skip to content

Instantly share code, notes, and snippets.

@AbubakarSiddiq
Last active December 21, 2016 22:23
Show Gist options
  • Save AbubakarSiddiq/9f6a4eac6bad4daaeed975fcba874f90 to your computer and use it in GitHub Desktop.
Save AbubakarSiddiq/9f6a4eac6bad4daaeed975fcba874f90 to your computer and use it in GitHub Desktop.
public ActionResult Student(String Name)
{
var input = Server.HtmlEncode(Name);
return Content(input);
}
[HttpGet]
public ActionResult Student()
{
var input = "This is another Studetn Action Method";
return Content(input);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment