Hi
Say I have just a normal view(not strongly typed) and in this view I have this
<% Html.RenderPartial("ViewUserControl1") %>
However this Partial View is strongly typed with a class(lets call it class1).
How do I pass data to this strongly typed view? Like in my partial view I can't go right now and do something like this
<% Model.SomeProperty %>
It would just crash. So I need to pass class1 somehow to this strongly typed view and preferably keep the view non typed.