7
votes
3answers
1k views
ASP.NET MVC: Unit testing controllers that use UrlHelper
Hello,
One of my controllers actions, one that is being called in an Ajax request, is returning an URL to the client side so it can do a redirection. I'm using Url.RouteUrl(..) and during my unit …
2
votes
0answers
25 views
How to Make Zend_Controller_Router resets parameter by default
Hi,
I'm using Zend-Framework 1.9.5 to make a web-application, But it's Url_Helper was quite tricky to me in the matter of parameter reset!, I know it's a good feature (parameter preserving) but in …
1
vote
1answer
397 views
Unittesting Url.Action (using Rhino Mocks?)
I'm trying to write a test for an UrlHelper extensionmethod that is used like this:
Url.Action<TestController>(x => x.TestAction());
However, I can't seem set it up correctly so that I can …
1
vote
2answers
936 views
ASP.NET MVC - Routes and UrlHelper
I have the following route
routes.MapRoute(
"GigDayListings", // Route name
"gig/list/{year}/{month}/{day}", // …
0
votes
3answers
275 views
UrlHelper extension method call encoded not executed
I created a simple extension method for the ASP.NET MVC UrlHelper. It takes no arguments as its job is to look up the name of a stylesheet file from the configuration and return a url to the …
0
votes
3answers
2k views
redirect with code igniter
can anyone tell me why my redirect helper doesn't work the way i'd expect. i'm trying to redirect to the index method of my main controller like so:
if($provider == '') {
…
