Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

60
votes
3answers
10k views

Html.Partial vs Html.RenderPartial & Html.Action vs Html.RenderAction

What is difference between Html.Partial and Html.RenderPartial in asp.net mvc? also What is difference between Html.Action and Html.RenderAction in asp.net mvc?
8
votes
1answer
569 views

What's the current practice for partial caching in ASP MVC2?

My website pages are composed of two kinds of content. The first is variable between users but constant for all pages. The second is constant across users, but variable between pages. This is a common ...
6
votes
5answers
1k views

Asp.Net MVC2 RenderAction changes page mime type?

It appears that calling Html.RenderAction in Asp.Net MVC2 apps can alter the mime type of the page if the child action's type is different than the parent action's. The code below (testing in MVC2 ...
5
votes
1answer
696 views

Should RenderAction be used with forms?

My setup: Have a view for a route like: /Pages/Details/2 The page details view has <% Html.RenderAction("CreatePageComment", "Comments"); %> to render a comment form Comment form posts to ...
4
votes
1answer
999 views

ASP.NET MVC - Ajaxified RenderAction

I am happy with what the RenderAction() function does. However, I'd like to ajaxify the loading and storing of data in the partially rendered action, so that everything happens in one page. Imagine ...
3
votes
1answer
118 views

How do I achieve ModelBinding with Html.RenderAction?

I'm working through a MVC book which uses the older version of Html.RenderAction. So it looks like this in the book Html.RenderAction("Summary", "Cart"); I have had to convert to ...
3
votes
2answers
376 views

ASP.Net MVC reusable form as RenderAction or RenderPartial

I'm looking for a best practice for embedding a form on multiple pages as a partial view. I have a contact form I'm looking to embed on multiple pages on a site. Usually, the form would be on a ...
3
votes
2answers
2k views

RenderAction not finding action method in current controller in current area

I'm creating an ASP.NET MVC 2 (RTM) project that uses areas. The Index action of the Home controller of one area needs to use RenderAction to generate a sub-section of the page. The action called is ...
3
votes
5answers
932 views

When Is It Appropriate to Use Html.RenderAction()?

I'm a little bit unsure about when it's appropriate to use Html.RenderAction() to render my Views and when not to. My understanding is that because it's not an 'official' component of ASP.NET MVC it's ...
3
votes
2answers
1k views

ActionFilterAttribute: Where is the 'Cancel' property?

Whatever happened to the Cancel property on the ActionExecutingContext? How would one abort a RenderAction when using an ActionFilterAttribute or is there another way to skin this cat? public ...
3
votes
1answer
515 views

Like Html.RenderAction() but without reinstantiating the controller object

I like to use the RenderAction extension method on the HtmlHelper object to render sidebars and the like in pages, as it allows me to keep the data access code for each such part in separate methods ...
2
votes
1answer
18 views

Does Html.RenderAction create a separate request?

I'm not seeing any extra requests in Fiddler when I have a view that makes RenderAction calls. Is it because it isn't a separate web request, per say, it's all done internally when the controller is ...
2
votes
1answer
128 views

MVC Razor Form Validation from Render Action

I am new to MVC and trying to implement what I would expect to be a common problem. I have a simple search form that I want to implement on each page of the site. I want this section to maintain its ...
2
votes
0answers
109 views

Reuse views and controller logic in MVC3

in my MVC3 based application I often need to reuse the same functionality in different views. Example: One view to search for users. Another view to show the search results and enable the user to ...
2
votes
2answers
3k views

What's causing this error?

I have a similar scenario in a different controller and it works fine, but in this case, it borks on me. My view calls Html.Action("MyAction", this.Model). I set a breakpoint on the first line of ...
2
votes
5answers
362 views

MVC2 - How put common LOGIC control (Like Search/Find) on each page?

I'm having trouble figuring out how to do the following: On every page (or every page I so desire), I'd like to put a common control widget (e.g. think - Search functionality that contains a ...
2
votes
1answer
253 views

How can I get Html.RenderAction to call the Get method on a Post?

After rendering a view on a Post, a call to RenderAction inside the view will call for the Post method. Is there any way to specify I want to call the Get method instead of the Post?
2
votes
2answers
751 views

Html.ActionLink in Partial View

I am using the following code in my master page: <% Html.RenderAction("RecentArticles","Article"); %> where the RecentArticles Action (in ArticleController) is : [ChildActionOnly] ...
2
votes
1answer
949 views

Asp.Net Mvc 2 - RenderAction List with a create

First, I use Asp.Net MVC 2 RC 2. What I want to do is to list a comment view and below this view being able to add comment (with validations). For example, something like when you add comment in ...
2
votes
1answer
617 views

Using RenderAction() and posting back to sub-controller action

I have parent view that also renders sub-controller action using RenderAction() (that returns a PartialView). An example is a front page with Login partial view (inputs: username, password, remember ...
1
vote
2answers
56 views

QueryString and RenderAction

I'm setting a class on my html tag when a specific query string argument is sent, right now I'm doing it like this (Razor view master page): @if ...
1
vote
0answers
75 views

Partial view/RenderAction returns 404 on model validation errors

I have an ASP.NET MVC3 site where I need to show some account-related stats in the sidebar I have a RenderAction in the layout i.e. @{ Html.RenderAction("GetStats", "MyController"); } and the ...
1
vote
0answers
68 views

Is there a better way to implement forms than using RenderAction?

I am working on a .Net MVC2 project where I am trying to modularize functionality as much as possible. One aspect of this would be to place a form in a partial views which is then called using ...
1
vote
2answers
3k views

MVC 3 Rendering 2-Level Menu as Partial View

I would like to implement a 2-level parent/child menu in my MVC 3 site such as Company - Background - Contact I have implemented a single, parent level menu as a PartialView like so ... ...
1
vote
2answers
95 views

Weird behaviour with RenderAction

On a View I am calling Render action with from within a loop, the action will create an array of objects and return to a PartialView with a Grid to display the results. View: foreach (var item in ...
1
vote
1answer
79 views

Is there a way to use something like <asp:Content> within partial views that are rendered with RenderAction?

In my ASP.NET MVC 2 web application, I utilize RenderAction to display HTML in what I call the "flash message" area of the web site. By flash area, I mean a highlighted area near the top that contains ...
1
vote
3answers
7k views

Asp.Net MVC 3 - @Html.Action won't render/return any HTML

I've been moving a fairly new project from ViewPages to Razor today, and all seems to be going well. Except I'm trying to use Html.Action to render a user control and it won't render anything. So I ...
1
vote
2answers
1k views

Reusable components in ASP.NET MVC

I have feature on my website (some UI and associated functionality) that I want to be able to reuse on multiple pages. For the purposes of this question, let's say it's a "Comments" feature. There ...
1
vote
1answer
328 views

asp mvc: show object details on a jquery dialog

Suppose I have a list of dinners. This list will present the users with, location, data and some other relevant info. Since that there's a lot of people attending, I want a button on each dinner that ...
1
vote
1answer
167 views

.net Html.RenderAction returns binary instead of HTML. Huh?

I'm not sure exactly what I'm doing wrong here. I have an action which returns a partial view: public class SharedController : BaseController { public ActionResult StudentPoll() { ...
1
vote
3answers
280 views

Is html.renderaction code smell

I've recently started a new job where I've been thrown into a bug fixing role on an under development ASP.Net MVC application. I'm a big fan of using an MVC approach for web apps and built some hefty ...
1
vote
2answers
109 views

How to add a weather info to be evalueated only once?

In a ASP.MVC (1.0) project i managed to get weather info from a RSS feed and to show it up. The problem i have is performance: i have put a RenderAction() Method in the Site.Master file (which works ...
1
vote
1answer
519 views

Renderpartial or renderaction

have an action that generates active vacancies. The code is below; public ViewResult OpenVacancies() { var openvacancies = db.GetActiveVacancies(); return ...
1
vote
1answer
901 views

Html.RenderAction<MyController> - does not have type parameters

I'm trying to use RenderAction in the following way: '<% Html.RenderAction( x => x.ControllerAction() ); %>' as seen here: ...
1
vote
1answer
569 views

Html.ActionLink() gives me an empty link when I use it inside Html.RenderAction()

I have a Microsoft MVC project with an action "Foo" whose view ("Foo.aspx") contains the lines: <%= Html.ActionLink("mylinktext1", "bar") %> <%= Html.ActionLink<MyController>(x => ...
1
vote
3answers
1k views

Asp.Net Mvc - RenderAction - Create in a list view

EDIT I put my solution on a share site. Like that you'll be able to see what I'm talking about. You can download it here : http://www.easy-share.com/1909069597/TestRenderAction.zip To test it, start ...
1
vote
2answers
1k views

Render action return View(); form problem

I'm new to MVC, so please bear with me. :-) I've got a strongly typed "Story" View. This View (story) can have Comments. I've created two Views (not partials) for my Comments controller ...
1
vote
2answers
206 views

How do I render an alternate child view in MVC?

I'm new to working with MVC so please don't assume I know anything. I am picking up a project that has much already written in MVC and I am trying to add some things to it. On one View there is a ...
1
vote
1answer
619 views

ASP.Net 2.0 and the new RenderAction method

I just recently migrated my ASP.Net MVC project from MVC 2.0 Preview 2 to MVC 2.0 Beta, and my calls to Html.RenderAction broke because a new RenderAction method was introduced in MVC 2.0 Beta. In ...
1
vote
2answers
636 views

Maintaining ViewData between RenderAction calls

I'm rendering a common Log-In form using Html.RenderAction, on every page of my site. If the user enters their details into the text-box and clicks 'Submit', it does a POST to a controller that ...
0
votes
3answers
49 views

Rails how do you call action in another controller and get the controller code for that action to run? [closed]

Possible Duplicate: Rails: call another contoller action from a controller Hi I'm new to rails and in my home page view I want to call actions in other controllers. I am using render ...
0
votes
0answers
20 views

RenderAction(), AuthorizeAttribute and ViewData in Asp.net MVC 3

Some pages in my web should has a picture with some words that Robot can't read in it(I don't know how to call it and call it ImageCode here, if there is a fixed name call it, please let me know), and ...
0
votes
1answer
332 views

active admin render edit page

I can easily redirect but I'd like to do a render the edit page on validation failure so I carry over all the validation methods into the form. I'm not sure how to render the edit action using ...
0
votes
1answer
41 views

Rendering rails named route

How do I render a rails named route properly from controller? routes.rb: get "logout" => "sessions#destroy", :as => "logout" get "login" => "sessions#new", :as => "login" get "signup" ...
0
votes
0answers
25 views

rails 3 action pipe?

I would like to do something like piping actions in rails. I searched about how to call an action in a specific controller from another one, but couldn't find good answer... What I want to do is : ...
0
votes
2answers
147 views

RenderAction a list of a model in the layout

So I want to put a list of newsitems in _Layout.cshtml I have a News model and a Show Action in its controller, and I want to put it in there with a RenderAction. @Html.RenderAction("Show","News"); ...
0
votes
1answer
182 views

Multiple form submits with RenderAction

I am using RenderAction to include the form below in my views: <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<IEnumerable<SelectListItem>>" %> <% using ...
0
votes
1answer
104 views

RenderAction to generate dropdown?

I'm having a mvc form which among other things contains an int that should be mapped to text strings displayed in a dropdown. MyViewModel { ...other fields... int Level { get; set; } ...
0
votes
1answer
321 views

how to return actionresult of another action from controller context

Here is my current code, I am using this to implement tabs public ActionResult Index(string tabs, int id = 0) { switch ((Tabs)Enum.Parse(typeof(Tabs), tabs,true)) { case Tabs.Profile: ...
0
votes
1answer
110 views

What's the best structure for (or instead of) using multiple partial views?

I have a view that calls on four different partial views (.ascx) to populate a portion of the view via RenderAction call. Each of the partial views use the same view model, but each returns a ...

1 2