Respond to HTTP HEAD requests using ASP.NET MVC
I created a simple action method in an ASP.Net MVC 2 project: public class HomeController : Controller { public ActionResult TestMe() { return View(); } } Then I launched Fiddler and built up an HTTP GET request to hit this URL: http://localhost.:51149/Home/TestMe The expected full page content was returned. Then, I changed the request to … Read more