Tagged Questions
55
votes
5answers
6k views
ASP.NET MVC: Unit testing controllers that use UrlHelper
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 tests this ...
17
votes
5answers
7k views
Call UrlHelper in models in ASP.NET MVC
I need to generate some URLs in a model in ASP.NET MVC. I'd like to call something like UrlHelper.Action() which uses the routes to generate the URL. I don't mind filling the usual blanks, like the ...
9
votes
1answer
3k views
Using Html.ActionLink and Url.Action(…) from inside Controller
I want to write an HtmlHelper to render an ActionLink with pre-set values, eg.
<%=Html.PageLink("Page 1", "page-slug");%>
where PageLink is a function that calls ActionLink with a known ...
8
votes
3answers
2k 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 ...
3
votes
2answers
1k views
How do I access the RequestContext Outside the Controller?
Background
I am trying to move business logic out from the controllers into their own services.
Controller
public class AccountController : Controller
{
private readonly IAccountService ...
3
votes
2answers
3k views
ASP.NET MVC - Routes and UrlHelper
I have the following route
routes.MapRoute(
"GigDayListings", // Route name
"gig/list/{year}/{month}/{day}", // ...
2
votes
3answers
276 views
Deploying ASP.NET MVC App to Multiple Virtual Directories (Issues with URL references & JS files)
I'm not sure if I have my question named correctly but here's the issue:
I have an MVC.NET app that is deployed at multiple virtual directories. The reason for this is because we have different ...
1
vote
2answers
1k views
Resolve virtual path in MVC
Hi,
I got a adress like this : ~/Content/Files/AdImages/20/20_thumb.jpeg, I need this to be resolved. This was done in ASP.net with Control.ResolveUrl().
According to this article ...
0
votes
1answer
44 views
How can i move this code outside of my asp.net-mvc project
I have the following code inside my asp.net-mvc project:
private string GenerateEmail(RequestContext requestContext)
{
var u = new UrlHelper(requestContext);
string url = ...
0
votes
1answer
21 views
change to a domain instead of a virtual directory on dev pc ASP.Net mvc 3
in our company we want our site in mvc to work like so:
sub.ourdomain.com
instead of: www.ourdomain.com/vritual
we are able to do that with isapi filter
and everything work OK.. except for links ...
0
votes
1answer
46 views
How to write nested functions in UrlHelper?
I'm writting a UrlHelper and now I need to write a nested function because for example I have page Articles which is accessed for everyone and I have separate Articles in Admin panel.
First have link: ...
0
votes
2answers
90 views
in asp.net-mvc controller, what is the best way to generate a URL
right now i take the
RequestContext
and pass this into a UrlHelper like this:
UrlHelper u = new UrlHelper(context);
string hrSyncUrl = u.Action("Update", "Person");
but the issue is that this ...
0
votes
2answers
308 views
can't access to an extension method with UrlHelper parameter in controller! Vice versa in view have access
why defined extension method with UrlHelper don't added in Url.EXTENSIONMETHOD when i want to use it in controller! but i have access to it in view?
public static string Home(this UrlHelper helper)
{
...
0
votes
3answers
1k 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 ...