10 answers

Now I get it. You wanna open the Create Contact page onclick of a button. Try this code.
public PageReference NewContact() {
PageReference page = new Pagereference('/003/e?retURL=%2F003%2Fo');
page.setRedirect(true);
return page;
}
Onclick of the button, you need to call this piece of code.