You didn't tell what kind of page "My Content Page" is? Is it a custom page, or just a question page.
If it is the question page, then you need to override public function q_view_main($q_view) in your theme.
Replace $this->q_view_content($q_view); with
if (qa_is_logged_in()){
$this->q_view_content($q_view);
}
else {
$this->output('Please register to see this content.');
}
For custom pages, or even widget content, you will do the same:
if (qa_is_logged_in()){
//the custom page or widget content here.
}
else {
echo 'Please register to see this content.' ;
}