在保存按钮单击 - 顶点上打开另一个顶点页面

时间:2013-08-09 11:24:54

标签: html hyperlink apex-code

我是最新鲜的。    我有一个示例表单,其中我有三个字段和一个按钮。    我想点击按钮打开另一个页面。    你能指导我吗?

提前致谢。

1 个答案:

答案 0 :(得分:0)

PageReference Class

public PageReference save() {
        // Add the account to the database. 
        insert account;
        // Send the user to the detail page for the new account.
        PageReference acctPage = new ApexPages.StandardController(account).view();
        acctPage.setRedirect(true);
        return acctPage;
    }