返回目录
jsp计数器-bean文件
  作者:未知 更新人:Legume 来源:未知 更新时间:2004.08.24  投稿信箱: tg*ddvip.com



import java.io.Serializable;

public class Counter implements Serializable{

// Initialize the bean on creation
int count = 0;

// Parameterless Constructor
public Counter() {

}

// Property Getter
public int getCount() {

// Increment the count property, with every request
count++;

return this.count;
}

// Property Setter
public void setCount(int count) {

this.count = count;
}
}