Tagged Questions
The urlhelper tag has no wiki summary.
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
1answer
77 views
Using an extension of UrlHelper without reference in chtml page
I have an extension of UrlHelper, I'll use on every page chtml. Do I have any way to refer to this extension without having to do it by using?
UrlExtender.cs
using System;
using System.IO;
using ...
2
votes
1answer
501 views
RuntimeError default_url_options host and root_url (with subdomain)
Each user of my app have a custom url (through subdomain) stored in db.
My request is simple, I would like to send the "user url" through a json feed, like this:
{user_name: "vincent", :user_url: ...
2
votes
1answer
823 views
UrlHelper extension method not working
I'm trying to add an extension method to my MVC 2 project without success and after several hours of googling and looking here I'm at a loss. I've created a brand new MVC 2 project to make sure there ...
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 ...
2
votes
2answers
454 views
How to Make Zend_Controller_Router resets un-wanted parameter by default
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 most ...
1
vote
2answers
340 views
Using Url.Action with no route values truncates the URL
I've got a site that's using making heavy use of AJAX, and in-order to keep things like Urls in a sensible place, I'm outputting the required Urls in a script block on the page, and then using them in ...
1
vote
2answers
470 views
symfony button_to pass parameter
I have a button_to component in Symfony 1.4, which calls a route that receives a parameter (a slug). But I cannot get Symfony to recognize the parameter I'm sending. I have tried this same thing with ...
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 ...
1
vote
1answer
266 views
Why doesn't this link_to url helper update the boolean record?
Thanks in advance. Tried to provide as much detail as possible. Attempting to create a link that updates a boolean record in a database. Basically, someone can mark a gift as purchased without ...
0
votes
1answer
24 views
Rails URL generator switch http / https
Is there a way to put in links to external resources that automatically adds the protocol based on the current protocol?
For example I want to show images from Facebook's Graph API. I was hoping I ...
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
2answers
108 views
Use a variable that store image path in Razor Url.Content
I used a function to construct an image path dynamically like this:
function () {
var name = $(this).attr('id') + '_o';
var newsrc = '../../Content/HomePage/' + name + ...
0
votes
1answer
47 views
Use Rails path helpers from inside an plain old ruby class? (Resque job)
I need to make some API calls from inside a Resque job (which is just a plain old Ruby class) and those API calls need to include URLs to resources on my site.
Is it "correct" to just add this to my ...
0
votes
1answer
123 views
Rails 3 - URL Helpers With Scoped Resource
I have a scoped resource in my routes file:
scope :module => "physical" do
resources :mymodels
end
Using '> rake routes' I get the standard routes, including:
mymodel GET ...
0
votes
2answers
101 views
Url helper for full url in asp.net mvc-3
Writing @Url.Content("~/Something/Something.html") in razor renders /AppFolder/Something/Something.html
is there a way to render the full url like ...
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
0answers
144 views
namespaces and rails routes
I have a routing like that:
namespace :folio do
resources :portfolios do
resources :portfolio_items do
resources :images
end
end
end
Now please don“t flame me ...
0
votes
1answer
153 views
Using url_for (form_for) for new instances of non-activerecord models
I need such a construction:
form_for Project.new
where Project is a model, that's not inherited from AR/AM/Mongoid (inherited from Spira).
Is there some monkey-patch to make Spira models answer to ...
0
votes
1answer
324 views
Using Rails Url Helper
I have a search form in the header of my site, such as this:
=semantic_form_for :search, :url=>{:controller=>:listings,:action=>:search} do
...
This works fine except when the controller ...
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
1answer
152 views
Mvc UrlHelper in conjunction with JQuery Templates
I would like to use the Mvc UrlHelper in conjunction with JQuery Templates.
Example template...
...
{{each Items}}
<div>
<%= Url.Action("Action", "Controller", new { Id ...
0
votes
3answers
161 views
what is the right 'rails' way to add a link_to a new custom method
We're adding a new method 'delete_stuff' to the WidgetsController of a scaffolded app.
in routes we added
match 'widget/delete_stuff/:id' => 'widgets#delete_stuff'
I CAN manually create html (GET) ...
0
votes
1answer
629 views
Zend URL helper and custom routes?
I can't figure this out. How do you use the url helper with custom routes?
I have a method in my users controller called edit and I have a custom route for it so it can be called through ...
0
votes
1answer
433 views
How can I automatically submit the Facebook URL sharer form?
I am trying to figure out, how can I automatically submit a url at the following page
http://www.facebook.com/sharer.php
without actually clicking on the submit button.
Thanks.
0
votes
2answers
436 views
UrlHelper.Action: would like to generate a link that ends with '#something'
I'm trying to create a link with Url.Action, which ends with a #something; I presume there's something in the route values to do this properly, but I couldn't find it with Google.
So far, I tried ...
0
votes
1answer
68 views
Rearranging parts of the URL result from link_to in Rails
This is how I'm doing it now:
link_to "Profile", :controller => "profiles", :action => "asked", :id => @profile
# => <a href="/profiles/asked/1">Profile</a>
Does it make ...
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
1answer
526 views
How to use Code Igniter to show Dynamic images via javascript(jQuery)
You can use the URL helper in Code Igniter to load CSS and Javascript with the base_url() method, but what if you have images dynamically being placed into your HTML via javascript? for example in my ...
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 ...
0
votes
2answers
19k views
Redirect with CodeIgniter
Can anyone tell me why my redirect helper does not work the way I'd expect it to? I'm trying to redirect to the index method of my main controller, but it takes me www.mysite.com/index/provider1/ when ...