vote up 1 vote down star

In MonoRail you can just CancelLayout() to not render the layout. In ASP.NET MVC, the only way to affect the layout seems to be to pass the layout name into the View() method like View("myview", "mylayout"); only it seems that passing null or an empty string doesn't do what I'd want.

I ended up creating an empty layout that just rendered the content, but that seems silly.

"Not Render the layout" means exactly that. In the web forms view engine they call layouts "master pages". I want to render just my action's view and not surround it with the master page.

flag

50% accept rate
If you can't explain exactly what you're looking for you're not going to get any other answers. What do you mean by "not render the layout?" – Will Oct 21 '08 at 14:09
The question is pretty clear to me. – Mauricio Scheffer Feb 6 at 15:31
Having to create an empty layout may seem silly, but how else will the webforms engine know how to order to asp.net content sections? I feel this is more of a problem with the webforms viewengine that you're having. – Min May 8 at 15:09
It is not clear: What do you mean by layout? no css? no html? only code? – Eduardo Molteni 22 hours ago

3 Answers

vote up 0 vote down

Does your view need to have a masterpage at all - they are an optional feature of WebForms? Also, are you rendering html inside your view?

It doesn't make sense to render an ASPX page that was written with a masterpage in mind without the masterpage, as your Content controls are not necessarily in the correct order.

link|flag
You can reuse views by assigning the masterpage at runtime. What the OP is asking is how to render the actual view out without rendering it's masterpage, presumably rendering the "Content" elements in the order they were placed in the ASPX. – Richard Szalay Feb 6 at 16:20
Sorry, yes, my mistake. – Mauricio Scheffer Feb 6 at 16:20
vote up 0 vote down

If you want to render no content to the output stream, just return an EmptyResult from your action instead of a ViewResult.

link|flag
He doesn't want an empty result, he wants a result without a layout. – Matt Oct 21 '08 at 13:42
Ah, that edit was added later on. – Richard Szalay Dec 16 '08 at 21:16
vote up -1 vote down

You can create a custom ActionResult that does pretty much anything. The ActionResult controls what is sent back to the client as the response. It would be trivial to create a class that extends ActionResult that does nothing.

link|flag
He doesn't want an empty result, he wants a result without a layout. – Matt Oct 21 '08 at 13:41
1  
Wow, that was helpful. And a custom ActionResult wouldn't be able to do this? – Will Oct 22 '08 at 11:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.