top / index / prev / next / target / source

2016-07-20 diary: [Force.com] シンプル Visualforce + [Apex] サンプル (GET版)

いがぴょんの日記 日記形式でつづる いがぴょんコラム ウェブページです。

[Force.com] シンプル Visualforce + [Apex] サンプル (GET版)

シンプルな Visualforce + Apex のコーディングを忘れがちなのでこれをメモ。

public without sharing class MySimpleClass {
    public String myMessage {get;set;}

    public MySimpleClass() {
        myMessage = 'Hello world!';
    }
}
<apex:page controller="MySimpleClass">
  <h1>Congratulations</h1>
  <p><apex:outputtext value="{!myMessage}" /></p>
</apex:page>

関連する日記

登場キーワード


この日記について