Kiven

Knowledge Has No Limit And Stick To It All The Time !
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2011年11月10日

摘要: Telerik专注于微软.Net平台的表示层与内容管理控件。Telerik Controls 2010 Q2控件组包括如下组件:Telerik RadControls for ASP.NET AJAXRadControls for ASP.NET是一套强大的用户界面控件套装,它可以帮助您创建拥有桌面应用程序华丽外表和高速性能的Web应用程序。18种可靠的 UI及数据控件全面提供AJAX性能,使用户可以得到高级的体验。但RadControls for ASP.NET不仅仅只支持AJAX,尽管其包含的控件以一流的性能帮助开发者执行AJAX。RadControls for ASP.NET同样还可以跨 阅读全文

posted @ 2011-11-10 18:18 KivenRo 阅读(6310) 评论(7) 推荐(0) 编辑

摘要: 样式一:验证码样式一 1 protected void Page_Load(object sender, EventArgs e) 2 { 3 if (!Page.IsPostBack) 4 { 5 this.GenImg(this.GenCode(4)); 6 } 7 } 8 private string GenCode(int num) 9 {10 string[] source ={... 阅读全文

posted @ 2011-11-10 13:07 KivenRo 阅读(3400) 评论(1) 推荐(1) 编辑

摘要: 在一个整数数组中随机抽取几个数,并求和 1 public int GetRandomSum(int[] array,int num) 2 { 3 int count = 0; 4 string ran = ""; 5 bool result=false; 6 Random random = new Random(); 7 for (int j = 0; j < num; j++) 8 { 9 ... 阅读全文

posted @ 2011-11-10 09:02 KivenRo 阅读(3169) 评论(2) 推荐(1) 编辑