0
votes
3answers
103 views
jquery script executing but not setting css for .show
Hi,
I have jquery code that is being reused by a repeatable partial view on an asp.net mvc page but the script is not executing as I expect it should.
The scenario is not that complex, I ha …
4
votes
2answers
108 views
How do I test an ASP.Net MVC View?
I want to write a unit test to ensure that the view I am returning is the correct one.
My plan is to write a test that first invokes the controller and then calls the ActionResult method I …
6
votes
3answers
942 views
How to mock the Request on Controller in ASP.Net MVC ?
I have a controller in C# using the ASP.Net MVC framework
public class HomeController:Controller{
public ActionResult Index()
{
if (Request.IsAjaxRequest())
{
…
0
votes
“The resource cannot be found.” error when there is a “dot” at the end of the url
I went into IIS and put the 404 error page to route to my custom Error Controller, with the plan of using the ReferrerURL parameter to get the URL that generated the error, sanitise the URL by remo …
