The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
30 views

comments url helper - using rails - LinkBot?

K... This seems pretty straight forward, but it's not standardized, it would seem. I've only been looking for a few hours, but hopefully someone here can point me in the right direction. So, an ...
0
votes
1answer
54 views

In Rails, what's the URL helper for an unknown model?

I'm trying to get the path in Rails to a model that I don't necessarily know the class of in a rake task (so it's not in an .erb). I know that I can do this: ...
1
vote
1answer
123 views

Extending Zend\View\Helper\Url in Zend Framework 2

I wrote a simple url view helper, that extends Zend\View\Helper\Url and attached it to the ViewHelperManager: MyNamespace\View\Helper\Url namespace MyNamespace\View\Helper; use Zend\View\Helper\Url ...
1
vote
0answers
21 views

UrlHelper.Action return empty string

very weird problem, I spent hours but not be able to find what exactly the problem is. I have some code as follows: public static string AbsoluteAction(this UrlHelper urlHelper, string ...
0
votes
1answer
48 views

Avoid hardcoded strings in UrlHelper.Action and ModelState.AddModelError

I have the following code-lines: return Json(new { redirectTo = UrlHelper.Action("Index", "Home") }); and ModelState.AddModelError("Useraccount.Email", emailAlreadyExistsException.Message); For ...
1
vote
1answer
243 views

Mocking Controller.Url.Action(string, string, object, string) in ASP.NET MVC

I use NUnit and Moq libraries for unit testing. I need to mock overloaded Url.Action(string, string, object, string), because my controller's action uses it to get an absolute url of an Action. My ...
1
vote
1answer
408 views

Generating Route Url to MVC controller action from WebAPI

Im used to generating route urls to other controller actions within an mvc controller action using something similar to below: public class ApplicationController : Controller { public ActionResult ...
4
votes
1answer
75 views

Generating a URL independant of controllers in ASP.NET MVC 3

I have an mvc 3 application with a background thread checking on the state of some database items. When it finds an expired item, it sends out an email. In the email, I would like to include the url ...
0
votes
2answers
88 views

UrlHelper.Action() skipping over empty properties

The model below used in two ways: public class SimpleModel { public DateTime? Date { get; set; } // Some other properties public SimpleModel() { Date = DateTime.Now; } ...
1
vote
2answers
47 views

How To add more element to nav_link on current_page?

I have some static pages in a navigation menu. I want to add more element to the item which is currently displaying. navigation on view layout/adminzor.html.erb <ul class='main-nav'> ...
1
vote
1answer
132 views

Rails: make custom URL helper behave like built in _path & _url helpers

I'm having a hard time figuring out the "Rails Way" to add a email confirmation URL to a mailer. I'm opting not to do this purely RESTfully because, well, it's difficult with text email because they ...
1
vote
1answer
125 views

url.Action with MvcContrib generates invalid links

In our application we use MvcContrib for generating links with the exception of cross area links where Contrib seems to be not working properly (or we are doing something wrong). In services we have a ...
1
vote
1answer
128 views

MVC 3 Url Helper Giving Incorrect URL

I am developing a MVC 3 application for a corporate intranet site and I am having some issues with the URL helper sometimes not producing correct URLs. The application is being accessed through an ...
0
votes
1answer
447 views

ASP.NET Mvc 4 Use bundle's beneficts for Url.Content

Is there any way I can do this? Some of the beneficts of bundling are: Minimization Gzip compression The request has a token parameter for handling files versiones (cache). In my site I use a lot ...
0
votes
0answers
82 views

UrlHelper Action fails on different machines [closed]

MVC 3, IIS7, Windows Server 2008, .NET 4.0 I have a strange problem when generating Url's in an MVC ViewModel. The really frustrating part is that this problem only occurs on our live server and ...
1
vote
2answers
82 views

How to createe a URL string based on a named route and keep parameters

I need to create urls for category switching, switching category should reset page to 1st and change cat name but keep rest of url params. Example of url: ...
3
votes
3answers
598 views

First call to Url.Action on a page is slow

I have a performance issue with a fairly simple ASP.MVC view. It's a log-on page that should be almost instant, but is taking about half a second. After a lot of digging it looks like the problem is ...
2
votes
2answers
527 views

Rails 3 URL without controller name

Suppose I want to have a blog with Rails 3 on my website and it will be the only thing I have on it. I would like to use Rails to implement it but I don't like the URLs Rails produces. I would like ...
2
votes
2answers
235 views

Why is url helper in rails putting a “.” instead of a “/” in path?

In my app I am working on allowing users to send invitations. The invites have tokens. And in the emails I am linking to a signup page with the token in the path. In the mailer's controller I am ...
6
votes
3answers
2k views

Use Seprate js File And use Url Helpers in it with ASP.NEt MVC 3 and Razor View Engine

I ask a similar question here and Darin Dimitrov answer that we can't use Url helper like $.ajax({ url: '@Url.Action("Index")', . . . in separate js file so what is your suggestion to use Url helper ...
0
votes
2answers
551 views

Codeigniter $this->email->send() function causing errors cannot modify header information

I have two function in one codeigniter controller which will set the payment status of user and send email. one main function will call send_mail. send_mail function will returns true or false. then ...
0
votes
1answer
101 views

error UrlHelper and mono

In my views (velocity template mode) I call $Url.Link helper, in Visual Studio with cassini it work but when I deploy my webapp on mono/nginx/ubuntu url are well not formed, I get only the controler's ...
0
votes
1answer
139 views

Generate real Server URL (not localhost)

Hi, Im using the following to generate full URL : urlHelper.Action("Detail", "Ad", null, "http") + "?id=" + adId.ToString(); This will however return a localhost URL even when the webpage is ...
1
vote
1answer
300 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
77 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
3answers
1k 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 + ...
2
votes
1answer
580 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 ...
1
vote
1answer
506 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
664 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 ...
3
votes
2answers
2k 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
88 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
329 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 ...
1
vote
2answers
803 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 ...
0
votes
1answer
298 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
426 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
145 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 ...
1
vote
1answer
363 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 ...
2
votes
2answers
795 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: ...
1
vote
2answers
906 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 ...
0
votes
3answers
432 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) ...
3
votes
1answer
3k 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
871 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.
1
vote
2answers
4k 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 ...
5
votes
2answers
4k 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 ...
1
vote
2answers
941 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 ...
2
votes
1answer
2k 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 ...
0
votes
1answer
95 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 ...
10
votes
1answer
9k 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 ...
1
vote
2answers
572 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
751 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 ...

1 2