1
vote
4answers
111 views

ASP.NET MVC form sumits to index instead to submitting to the right action

I crated a form that is to be used as a partial view. I placed a breakpoint at the 'Save' action, and when I click the submit button, it validates the data, but never reaches the action, instead the ...
0
votes
1answer
56 views

Can I have a static route like this in MVC?

In my web application I will have a route like : http://server/requests/info/{id}-{guidPart} (a string) So I thought Id be clever and make a route so I did : routes.MapRoute( name: "Info", ...
1
vote
1answer
144 views

Partial View action? [duplicate]

Possible Duplicate: ASP.NET MVC 3 controller action for partial view I have a page that contains a partial view. This partial view has a custom model and I thought about replacing it with ...
1
vote
1answer
506 views

Make jquery ajax calls to ASP.NET MVC action

I have a simple Edit action in ASP.NET MVC that looks like this : [HttpPost] public ActionResult Edit(EditPostViewModel data) { } I am trying to make a post to this action like this : function ...
0
votes
1answer
161 views

Running code before an MVC action in controller with [AllowAnonymous] executes

I have a bunch of controllers that have the [AllowAnonymous] attribute in class-level scope. I need to check a few things before any of the actions in such controllers executes. For example, I might ...
0
votes
1answer
858 views

ASP.NET MVC 4 : How to get selected dropdown values in controller action?

I have a view as given below. I have two submit buttons; one for find new car and another for find used car. How can I can get the value of selected dropdown in controller ? And how can I find out ...
0
votes
3answers
95 views

How to execute controller actions that return Views but keep the URL intact in ASP.NET MVC

When I navigate to /Controller/Action in ASP.NET MVC, the action returns a View and the browser URL is updated. How could I keep the URL intact but return the requested View at the same time? For ...
0
votes
1answer
347 views

MVC 3 Page navigation and passing parameters with javascript

i have my main page and also two partial views. One partial view is a menu and the other is a telerik grid. What i want to achieve is selecting a row in the grid and when i click a button in the menu ...
0
votes
2answers
325 views

unit testing of very small asp.net mvc actions returning json

The first line of my action is tested with an extra integration test. The second line is tested with an extra unit test for automapper mapping stuff The third line is untested then. The below unit ...
0
votes
1answer
237 views

Asp mvc redirect without affecting url

I have a rather archaic login system, and this is part of the login action: // login action return RedirectToAction("Action", new { id = aVal, name = aName, // other params }); It redirects ...
0
votes
1answer
108 views

Personalize asp.net MVC routing ruler

I don't completely understand how to use routing in asp.net mvc. I've organized my views and controllers in 2 main folders: frontoffice and backoffice. Now I'd like to have the actions inside ...
0
votes
1answer
103 views

MCV Wont deserialize HttpGet variables

When I submit this url: http://localhost:3333/User/GetAll?_dc=1345288777353&page=1&start=1&limit=25&callback=Ext.data.JsonP.callback2 The controller wont deserialize PagingModel ...
1
vote
2answers
466 views

How can I get the list of all actions of MVC Controller by passing ControllerName?

How can I get the list of all actions of Controller? I search but cannot find example/answer. I see some example recommended using reflection but I don't know how. Here is what I am trying to do: ...
0
votes
0answers
87 views

Something Like A Catch-All Action In a Controller

I have a controller named ProfileController, and what I'm trying to do is make it so I can redirect or search for users based on their usernames. Something like www.site.com/Profile/MyUsername and ...
-2
votes
1answer
273 views

Find list of Controllers Name and Actions Name in mvc [closed]

i have a navigation page and i wanna that when click on create navigation i show dropdown that include of Controllers name and when choose one controller then in another dropdown show related action ...
7
votes
2answers
4k views

ASP.Net MVC and state - how to keep state between requests

As a fairly experienced ASP.Net developer just recently starting using MVC, I find myself struggling a bit to change my mindset from a traditional "server control and event handler" way of doing ...
0
votes
3answers
273 views

Redirect to the Caller Action in ASP.NET MVC3

Assume we have an action like: public ActionResult Display(long Id){ //Do something return RedirectToAction(//To the Caller) } So Display action called by some Views, like: Index View : ...
0
votes
1answer
420 views

Dynamically Rendering Actions from Controller - MVC

I am trying to write some code in my MVC controller that will dynamically call another controllers action and render it as a string. Basically I am trying to use the @Html.Action() helper method that ...
0
votes
2answers
1k views

Inject javascript on every controller action - asp.net mvc

Whenever we make a call to any action controller whether through a full post back or an ajax call I want to check the view model and depending on some logic inject some javascript to be executed in ...
2
votes
1answer
384 views

UrlHelper.Action(“Edit”, “Ad”) returns id parameter?

Hi, I am using the following code to generate a URL : UrlHelper urlHelper = new UrlHelper(htmlHelper.ViewContext.RequestContext); urlHelper.Action("Edit", "Ad"); If Im currently is on URL ...
0
votes
1answer
347 views

How do I convert an object to a RouteValueDictionary inside an Action?

I need to be able to pass multiple parameters if needed into an action. They will ultimately be passed into a second action which will know the details (how many, what they are called) but my first ...
0
votes
2answers
407 views

ASP.NET MVC Posting models to an action with an an Interface

My understanding is that ASP.NET MVC only allows you to POST objects to Actions in the Controller, where the Action's arguments accept the posted object as a Concrete class. Is there any way around ...
7
votes
3answers
2k views

return new EmptyResult() VS return NULL

in ASP.NET MVC when my action will not return anything I use return new EmptyResult() or return null is there any difference?
0
votes
1answer
247 views

How to know if Controller has an Attribute or not in ASP.net?

In the view, for example, in "_Layout.cshtml" How to get the controller/action which called this view? After found the controller/action name, then how to get the list of the attribute it has? Or ...
1
vote
3answers
1k views

ASP.NET MVC: How to render a different action (not view) with the model?

It's really easy to return a different View from the Controller: return View("../Home/Info"); However, I need a model in the Info view. I have a lot of stuff going on in the Info() action result ...
0
votes
2answers
376 views

ASP .NET MVC - Change domain used by URL.Action?

I have a website that has two domains pointing to the same content. Let's call them www.domainA.com and www.domainB.com where www.domainA.com/Page is the same as www.domainB.com/Page. Every page on ...
20
votes
2answers
5k views

SignalR + posting a message to a Hub via an action method

I am using the hub- feature of SignalR (https://github.com/SignalR/SignalR) to publish messages to all subscribed clients: public class NewsFeedHub : Hub public void Send(string channel, string ...
5
votes
1answer
5k views

Get Controller's Action name in View

What is the correct way to get the name of the Action returning the View in MVC3? I am using ViewContext.Controller.ValueProvider.GetValue("action").RawValue to return the name of the Action ...
0
votes
2answers
1k views

OutputCache Flush Cache through an Action in an MVC 3 Application

In many actions from the MVC application we are building up, we use OutputCache as follows: [OutputCache(Duration = 3600, VaryByCustom = "language")] public ActionResult SomeAction() { //Action.. ...
2
votes
1answer
829 views

C# MVC Implementing API with HMAC signature parameters

I'm implementing an API using authentication based on this article: http://www.thebuzzmedia.com/designing-a-secure-rest-api-without-oauth-authentication/ And this related answer by the same author ...
6
votes
3answers
2k views

Why are these two Actions considered ambiguous despite the parameters being different?

The current request for action 'Index' on controller type 'UsersController' is ambiguous between the following action methods: System.Web.Mvc.ActionResult PostUser(Models.SimpleUser) on type ...
0
votes
1answer
856 views

Reading text/xml into a ASP.MVC Controller

How do I read text/xml into an action on a ASP.MVC Controller? I have a web application that may receive POSTed Xml from two different sources so the contents of the Xml may be different. I want the ...
0
votes
2answers
253 views

Is it possible to specify Action names dynamically at run time?

string actionName = "Users"; [HttpGet] [ActionName(actionName)] public ActionResult GetMe() { } ...gives: An object reference is required for the non-static field, method, or property That was ...
10
votes
4answers
3k views

How can I overload ASP.NET MVC Actions based on the accepted HTTP verbs?

Wanted to use the same URL for a GET/PUT/DELETE/POST for a REST based API, but when the only thing different about the Actions is which HTTP verbs it accepts, it considers them to be duplicate! "Type ...
-1
votes
2answers
317 views

asp.net mvc controller with multiple lists and “return to list” link

If you have 5 list views in a controller and in each list you can go to edit, details or delete. On the edit, details and delete page youo have a link 'return to list'. What's the best method to ...
1
vote
2answers
376 views

File IO within an ASP.NET MVC Action

Is it possible to use some kind of 'critical section' so that it is safe to do something like the following within an action... public ActionResult GenerateTasks() { string someDir = .... if ...
4
votes
3answers
2k views

Pass complex object with redirect in ASP.NET MVC?

Hi, I have a action that looks like this : [AcceptVerbs(HttpVerbs.Post)] public ActionResult Register(AdRegister adRegister, IEnumerable<HttpPostedFileBase> files) The AdRegister is ...
0
votes
2answers
2k views

ASP.NET MVC - Calling an Action through jQuery

I've a quick question. To call an action through jQuery (to use AJAX), do i have to create a new Action returning json type or is there anyway to use the same action for http request (post) and ...
1
vote
1answer
185 views

Overriding an action called from ChildActionExtensions

At the end of my view, I call this: <%= Html.Action("ProductLayoutAndLimits", this.Model) /* Render product-specific options*/ %> That action is virtual in my controller: ...
0
votes
1answer
158 views

Specify paths to actions in aspx pages MVC

I'm working on ASP.NET MVC application. On my master page, I have a form that I need to submit to another action. Below is the relevant code: <form id="form1" action="/Stock/PerformSearch" ...
2
votes
1answer
319 views

MVC Action filter across all the application

I am trying to create authorization action filter the will fire on each request to check if the user is allow to do some stuff. So, i created the following classes/interfaces: public interface ...
5
votes
2answers
1k views

Action with a string array as parameter

I want to call an action with something similar to this uri: http://server/controller/action/?columns=firstname&columns=lastname&columns=age and use it like this: public ActionResult ...
0
votes
1answer
506 views

What are typical ASP.NET MVC - Controller Action Name conventions?

I'm struggling to choose appropriate names for my actions. I want to distinguish between actions that return a view to: Create Edit Edit-Create Here is what I have so far: Create --> Show ...
0
votes
3answers
359 views

How can i tell if a radiobutton is checked in action ? (MVC)

I would really like to be able to do this if myRB.Checked = true then return redirecttorout("SomeRoute") else someother route i am used to web forms, in which i could do this in the code ...
1
vote
2answers
320 views

How MVC fill Id parameter?

today I've got some interesting observation, that I need to explain. I've got my Person class that is described as above: public class Person { public int Id { get; set; } public string ...
0
votes
1answer
2k views

javascript method post - how to call asp.net mvc action onClick?

i have an image: <img onclick="Search()" alt="searchPage" style="vertical-align: middle;" height="17px" src="../../Stylesheets/search.PNG" title="search" /> and javascript methode: ...
1
vote
2answers
379 views

What does the 'action' part of a form tag mean in ASP.NET MVC?

When I have the following action in a form tag, what does the '/Account/Profile` part mean? <form method="post" action="/Account/Profile" Is it a Filename for a view? Is it an action?
2
votes
5answers
201 views

json output of an MVC Action

How can i preview the JSON output of an MVC Action that uses Jsonresult?
4
votes
3answers
197 views

Do I need a view for every action?

I have been developing in ASP.NET MVC for a short while. Up to this point, the controller actions have been fairly simple. Each action returns its corresponding view. However, I recently created an ...
2
votes
1answer
979 views

ASP.NET MVC One Form, Two Buttons

I have a simple form based off a model called Visitor. I'd like to have a search button by one of the id text fields so the user can click the button and have the page populate with visitor ...

1 2