摘要: protected v 阅读全文
posted @ 2010-08-14 20:29 叮当小马 阅读(707) 评论(0) 推荐(0)
摘要: using System.Text; /// /// 获得三位的随机数 /// /// public string getTreeNumRandom() { Random ro = new Random(); int iResult; int iUp = 999; int iDown = 100; iResult = ro.Next(iDown, iUp); //Response.Write(iResult.ToString()); return iResult.ToString().Trim(); } /// /// 新的日期字符串 /// /// /par 阅读全文
posted @ 2010-08-14 19:56 叮当小马 阅读(1316) 评论(0) 推荐(0)