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
2010-05-08 09:00:24
+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
2010-05-08 14:25:18