Is it possible to access the control located on the content page (with the placement owner, control over several views, which will be more accurate) on the main page?
Situation: I have a menu with buttons located on the main page.
Now on my content page I have 1 placement owner. In which there is a multivisor with several views.
If I click a button in the (MasterPage) menu, then it should open the correct view (with its controls) displayed in the content holder area.
I set ActieveViewIndex = 0, but I get all kinds of belligerent behavior. I need to do something with ActiveViewIndex ++, but nothing works.
edit ::
string a = Request.Querystring["one"]
string b = Request.QueryString["two"]
if ( a == "addOne")
{
mvMultieView.SetActiveView(vView1);
}
else
if ( b == "addTwo")
{
mvMultieView.SetActiveView(vView2);
}
Any suggestions? Sincerely.