我是最新鲜的。 我有一个示例表单,其中我有三个字段和一个按钮。 我想点击按钮打开另一个页面。 你能指导我吗?
提前致谢。
答案 0 :(得分:0)
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;
}