Last active
December 21, 2016 22:23
-
-
Save AbubakarSiddiq/9f6a4eac6bad4daaeed975fcba874f90 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
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