9
Come deridere la richiesta sul controller in ASP.Net MVC?
Ho un controller in C # usando il framework ASP.Net MVC public class HomeController:Controller{ public ActionResult Index() { if (Request.IsAjaxRequest()) { //do some ajaxy stuff } return View("Index"); } } Ho avuto alcuni consigli sul deridere e speravo di testare il codice con il seguente e RhinoMocks var mocks = …