Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
238 views

how may i add integer list to route

I'm trying to add int[] array to my Url.Action something like this: var routeData = new RouteValueDictionary(); for (int i = 0; i < Model.GroupsId.Length; i++) { routeData.Add("GroupsId[" + i ...
4
votes
1answer
9k views

How does Url.Action work Asp.net MVC?

This is somewhat related to another question i've asked but i figure why not ask it seperately. If i were to place something like the following in aview <td><img src='<%= Url.Action( ...
3
votes
2answers
185 views

Url.Action() includes unwanted parameters, trying to have more control

I have a link in a page that goes like this: Url.Action("List", "Item", new { category = "seasons" }) The Route that matches that page also has a parentGroup and group parameters Ex: ...
2
votes
2answers
247 views

How to format a URL.Action() call in JQuery to set a link's href attribute?

I need to set the href attribute of a link to point to a specific image, which has its id from the database set as its title. However, I am having trouble with trying to format the string to include a ...
2
votes
1answer
1k views

Url.Action parameters?

In listing controller i have , public ActionResult GetByList(string name, string contact) { var NameCollection = Service.GetByName(name); var ContactCollection = ...
2
votes
1answer
126 views

How do I stop URL.Action from including parameters?

In my main navigation I have a link to: Url.Action("Items", "FAQ"); The link works fine and I get to ~/Item/FAQ However, I have links which contain parameters, so: ~/Items/FAQ/Question-1 This all ...
1
vote
2answers
210 views

Problem by Url.Action in asp.net MVC

I have a problem by Url.Action in asp.net MVC. this is a sample: Url.Action("index", new { page = 1, success = 2}); This code generate this url index?page=1&amp;success=2 In this url there is ...
1
vote
2answers
264 views

Url.Action not triggering client-side validation

For some reason I cannot get Url.Action to trigger client-side validation in MVC 2. I have it set up like this <div class="createpage"><a href="<%= Url.Action("Create","Account") ...
1
vote
2answers
1k views

ASP.NET MVC: Application_Start and Url.Action

I am struggling with MVC - which I love - and it's features. I am trying to load a menu in the Application_Start event. I want to load some links with the correct url (controllerName/actionName) but I ...
0
votes
2answers
41 views

Url.Action puts an &amp; in my url, how can I solve this?

I want to send the variables itemId and entityModel to the ActionResult CreateNote: public ActionResult CreateNote( [ModelBinder(typeof(Models.JsonModelBinder))] NoteModel Model, ...
0
votes
2answers
83 views

The name 'Url' does not exist in the current context error in asp.net

I have the following line of code in an asp.net page: $("#example").editable('<%=Url.Action("UpdateSettings","Admin") %>'); In document.read (javascript), but visual studio throwns an error ...
0
votes
1answer
570 views

ASPNET MVC: Problem w/Url.Action when targeting an Index Page

I'm running into a situation where a "fully qualified" route is not being generated when it needs to be. The following code demonstrates the issue: var junk = Url.Action("Index2", ...
0
votes
2answers
101 views

How should I add a static value to the end of a route using Url.Action (in ASP.NET MVC 3)?

I have this route: routes.MapRoute(null, "Users/{id}/Summary", new { controller = "Users", action = "GetSummary" }); How can I specify this using a Url.Action? I'm currently using: string path = ...
0
votes
2answers
703 views

url.action, jquery, and mvc

I'm building an application that will shutdown a server, ping that server, and notify the user if the server has been shutdown. If it does not shutdown successfully, it allows the user to "Try ...
0
votes
1answer
239 views

Using jquery to get a partial view and updating the UI

Hi I need to render a partial view (returned from the controller) to show some customer summary details. This will need to happen when the user clicks on a button. In the the mean time the user can ...
0
votes
1answer
127 views

Url.Action how to convert utf-8?

<a href="<%=Url.Action("Search","Home",new{ value = "Şiir" }) %>">Şiir</a> domain/Search/%C5%9Eiir How can I convert it to utf-8? domain/Search/Şiir
0
votes
2answers
761 views

How to give user confirmation message before ActionLink based on validation

I have the following link. On click, I'd like to check the item.primary_company field and if populated, give the user a warning and ask if they would like to continue. How can I do this? <a ...
0
votes
1answer
416 views

ASP.NET MVC Links result in 404 Errors after Deployment

I have deployed an ASP.NET MVC application following the article How to: Deploy an ASP.NET MVC Application. The index page for the app pulls up correctly rendering images, loading JavaScript and CSS. ...