[eluser]wiredesignz[/eluser]
In your module you would make it return the View using CI's default method.
Code:
return $this->load->view('a_view', $data, TRUE); //TRUE returns output, FALSE displays it.
If it is a module View instead:
Code:
return $this->load->module->view('a_view', $data, TRUE); //TRUE returns output.
I'll put an example on the wiki too.