Multiple Model Form Render In One Page - Errorsummary

Hi actually i have few model in

(<Userprofile> / <Useraccount>/ <Usercontact>)

I want to render this 3 model _form[in different div] to one page call user/update, but just <Userprofile> will display, other will hidden, when click the menu button(* example <Useraccount>)_form -> display but current <Userprofile> -> hidden

<div id =‘Userprofile’><?php echo $this->renderPartial(’_formupate’, array(‘model’=>$userprofilemodel)); ?></div>

<div id =‘usercontact’><?php echo $this->renderPartial(’_formupdate’, array(‘model’=>$usercontactmodel)); ?></div>

<div id =‘useraccount’><?php echo $this->renderPartial(’_formupdate’, array(‘model’=>$useraccountmodel)); ?></div>

The problem is, i submit my ‘usercontact’, When i have error field, the systems will show the errorSummary - >Userprofile

May i know which way is better to do this? or i still have separate the form by different page?

Any solution to this ?

@ winson kong

any update on this?