柚子Nan--回归原点

Everything can be as easy as you like or as complex as you need.
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2004年3月11日

摘要: public class Dollar{ private int amount; public Dollar() { } public Dollar(int intAmount) { this.amount = intAmount; } public Dollar Times(int iMult) { return new Dollar(amount * iMult); }}第... 阅读全文

posted @ 2004-03-11 21:42 柚子Nan 阅读(1176) 评论(5) 推荐(0) 编辑

摘要: 在WebForm中使用MessageBox的方法private void MessageBox(string strKey,string strMessage){ string strScript = "" ; page.RegisterStartupScript(strKey,strScript); } 阅读全文

posted @ 2004-03-11 09:19 柚子Nan 阅读(202) 评论(0) 推荐(0) 编辑