top / index / prev / next / target / source
日記形式でつづる いがぴょんコラム ウェブページです。
シンプルな 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>