views:

47

answers:

3

What i need use to render a widget without use contentplaceholder??

A: 

If you are not using ContentPlaceHolder in master page then you can just create normal View as a standalone page.

Tomi
+1  A: 

Have you tried creating the widget as a partial view and rendering it on the Master Page with:

<% Html.RenderPartial("YourWidgetViewNameHere"); %>
Sergi Papaseit
+1  A: 

Well, i solve this problem with RenderAction(), and im very impressed with this exists in harmony talking about widgets the RenderAction is the solution!