Skip to content

Instantly share code, notes, and snippets.

@AbubakarSiddiq
Last active December 21, 2016 22:21
Show Gist options
  • Save AbubakarSiddiq/38647d8124d76ace01f354d9b9ec8efa to your computer and use it in GitHub Desktop.
Save AbubakarSiddiq/38647d8124d76ace01f354d9b9ec8efa to your computer and use it in GitHub Desktop.
public ActionResult Student(String Name)
{
var input = Server.HtmlEncode(Name);
return Content(input);
}
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