The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
49 views

MVC3 unterminated string constant syntax error

I have the following code which gives me a syntax error - unterminated string constant.I've matched up the quotes can't seem to spot an issue. Any ideas? It works fine, the syntax error is just ...
0
votes
1answer
45 views

How to use a javascript variable in url.action with ASP.NET MVC WebForms view engine

I want to redirect the user to a url in a javascript function. editClick: function () { var myid = 1; location.href = '<%= Url.Action("ActionName", "ControllerName", new { ...
2
votes
2answers
148 views

How to pass dynamic value in @Url.Action?

I have written following jquery in my partial view: $.ajax({ type: "POST", url: '@Url.Action("PostActionName", "ControllerName")', data: { Id: "01" }, success: ...
0
votes
1answer
88 views

How to Open .pdf on a new Tab

The Objective: I have to print a PDF on a new tab after some tasks have finished correctly. Steps: I want to execute a method that should go to the server, take the PDF and open it on a new Tab, I ...
0
votes
3answers
85 views

Use Razor in Jquery

I am writing AJAX call which looks as follow: <script type="text/javascript"> $(function () { $.ajax({ ...
1
vote
1answer
23 views

@Url.action cast exception

I am trying to implement @Url.Action on a link to be clicked. link = "@Url.Action("ExportWeeklyTimesheetPDF", "Hours", new { projectId = Model.ProjectId, reportType = 'Week', reportDate = ...
1
vote
1answer
1k views

Razor MVC4 Url.Action not working

I have a code as below in razor view <a href="@Url.Action("Details", "Mycontr", new {id =16}, Request.Url.Scheme)"> while I double click on this item it is redirected to below Url ...
0
votes
1answer
87 views

ASP.net MVC Url.Action Link formatting

I'm very new to ASP.net and recently converting from asp.net to asp.net MVC projects. I have one basic question in asp.net MVC Url.Action. I have one ActionResult method with two parameters ...
2
votes
1answer
183 views

Url.Action becomes null when in JSON string

Bit of a noob with testing so please bear with me, I have a controller that returns a JsonResult that contains a string calculated by Url.Action like this: public ActionResult GetResult(SomeModel ...
2
votes
1answer
112 views

Unit test mock Url.Action

I'm writing unit test using the Moq framework and I have a controller function that returns return Json(new { redirectUrl = Url.Action("Action", "Controller"), isredirection = true }); ...
0
votes
1answer
309 views

Passing dynamic javascript values using Url.action()

Could anyone please tell how to pass dynamic values using Url.action(). Something Like, var firstname="abc"; var username = "abcd"; location.href = '@Html.Raw(@Url.Action("Display", "Customer", new ...
0
votes
0answers
184 views

Not able to pass dynamic parameter values using Url.action()

Not able to pass dynamic value parameters using Url.action(). Since, here am passing static values for the parameters, this is working, location.href = '@Html.Raw(@Url.Action("Display", "Customer", ...
0
votes
2answers
133 views

Only first parameter value is getting while calling controller method using Url.action.

I am calling a controller method using Url.action like, location.href = '@Url.Action("Display", "Customer", new { username = "abc",name = "abcdef",country = "India",email = "abc@hmail.com",phone = ...
1
vote
1answer
370 views

ASP.NET MVC Razor Url.Action doesn't work in Internet Explorer 8

I developed a simple ASP.NET MVC3 project with Razor. Linkin between pages I use the following table: <table class="indexTable" align="left"> <tr> <td class="indexTd"> ...
1
vote
1answer
91 views

How to html encode a text before sending it unto the server?

I have the below code in my MVC view which gets the contents of a TextArea control and makes a request to a url (action) then displays the result in another text box: var input = $('#tbInput').val(); ...
-3
votes
1answer
430 views

How to pass a javascript variable to Url.Action? [closed]

I'm using MVC 3.0 and I'm just wondering How to pass a javascript variable to Url.Action method which is a server side method? The below code fails to compile: string actionName = "MyAction"; string ...
2
votes
1answer
992 views

Url.Action MVC3 not recognizing route parameter when building link

When adding custom routing constraints to my route parameters I am finding that it is breaking the Url.Action method I use to build my links. If the route constraint is simply a regular expression ...
3
votes
1answer
982 views

how to get javascript variable into URL.Action mvc method

onSelectRow: function(id) { document.location.href = '@Url.Action("EditEncounter", "EditEncounter", new { encounterId = "'<%:id%>'", popId = TempData["POPULATIONID"] })' ...
0
votes
2answers
151 views

Object does not save it state in Url.action

I am devloping an app using jqueyrmobile framework in .NET MVC3. I am creating a ListView using a loop <ul data-role="listview"> @foreach (var item in Model) { <li><a ...
0
votes
1answer
929 views

URL.Action includes id when constructing URL

I'm using ASP.Net MVC. Here's my code snippets from a controller named Course: public ActionResult List(int id) { var viewmodel.ShowUrl = Url.Action("Show", "Course"); ... } public ...
0
votes
2answers
567 views

ASP.NET MVC 3 URL.Action mapped to incorrect Route

I have these two routes configured in my app: routes.MapRoute( "PromotionModel-test", // Route name "testSpecifications", // URL with parameters new { ...
1
vote
2answers
112 views

MVC3 Routing Working 1 Direction Only

I am working on an ASP.NET mvc 3 site that contains several project entities, and then each project has several associated subpages, each that works with a component of the project. So for instance, ...
0
votes
0answers
481 views

@Url.Action is not calling Post action methods

I have the following code to provide auto complete search: <form id="artistSearch" method="post" action="@Url.Action("Search", "User")"> <input type="hidden" name="classid" ...
5
votes
2answers
2k 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
961 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 ...
7
votes
3answers
1k 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
703 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 ...
6
votes
1answer
614 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 ...
2
votes
2answers
1k 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 ...
7
votes
2answers
23k views

Url.Action parameters?

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

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
206 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 = ...
2
votes
1answer
511 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
416 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
3k 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
406 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
207 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
2k 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
729 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. ...
2
votes
2answers
2k 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 ...
6
votes
1answer
30k 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( ...