views:

316

answers:

2

How would I go about this?

EDIT: USER CONTROL WITHIN USER CONTROL?

+2  A: 

use nested calls to Html.RenderPartial.

i.e. Have Html.RenderPartial in your page1.aspx view to render your usercontrol1.ascx view

that contains another Html.RenderPartial call to render usercontrol2.ascx

Corin
+1  A: 

You want to look up Partial Views

here is a link to get you started http://bradwilson.typepad.com/blog/2008/08/partial-renderi.html

Jon Erickson