摘要:
function ForDight(Dight,How){ var Dight = Math.round (Dight*Math.pow(10,How))/Math.pow(10,How); return Dight; } //ForDight(Dight,How):数值格式化函数; //Dight:要格式化的 数字; //How::要保留的小数位数。 阅读全文
摘要:
//1.摘要: //初始化 System.Collections.ArrayList 类的新实例,该实例为空并且具有默认初始容量。 // public ArrayList(); ArrayList arraylist = new ArrayList(); //2.摘要: //初始化 System.Collections.ArrayList 类的新实例,该实例包含从指定集合复制的元素并且具... 阅读全文
摘要:
转载http://blog.fwhyy.com/2012/03/take-the-first-initials-method-of-csharp-and-vbnet/ 阅读全文
摘要:
解决这个问题只需将replace的第一个参数使用正则的方式即可,代码如下: 1 var reg = new RegExp(",","g"); 2 var str = "0CEA65D5-DB8E-4876-A6F8-C88AC7F0E185,E846C244-8A19-4374-879B-0B1DC 阅读全文
摘要:
((2[0-4]\d|25[0-5]|[01]?\d\d?)\.){3}(2[0-4]\d|25[0-5]|[01]?\d\d?) 阅读全文
摘要:
DataGridView1.ColumnHeadersDefaultCellStyle.Alignment=DataGridViewContentAlignment.MiddleCenter 阅读全文
摘要:
文章来源:http://www.cnblogs.com/fengzheng126/archive/2012/04/10/2441551.htmlListBox控件属性介绍:SelectIndex:当前选中的列表项的序号。SelectItem:当前选中的列表项。清除列表框中全部的列表代码://获取列表... 阅读全文
摘要:
文章来自:http://www.baike369.com/content/?id=5773 阅读全文
摘要:
定义和用法Calendar 控件用于在浏览器中显示日历。该控件可显示某个月的日历,允许用户选择日期,也可以跳到前一个或下一个月。属性属性描述.NETCaption日历的标题。2.0CaptionAlign日历标题文本的对齐方式。2.0CellPadding单元格边框与内容之间的空白,以像素计。1.0... 阅读全文
摘要:
BulletedList使用及详解 文章来源:www.cnblogs.com/xiohao/archive/2013/10/09/3359263.htmlBulletedList是一个让你轻松在页面上显示项目符号和编号格式(BulledtedList)的控件。对于ASP.NET1.x里要动态显示B... 阅读全文