0

我在顶点更新鲜。我有一个示例表单,其中包含三个字段和一个按钮。我想在按钮单击时打开另一个页面。你能指导我吗?

提前致谢。

4

1 回答 1

0

PageReference 类

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;
    }
于 2013-08-10T04:18:24.303 回答