会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
探索未来,Web3.0的无限可能性
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
下一页
2016年8月14日
Jquery 操作DropDownList 根据条件选中
摘要: $("#<%=DDLCounty.ClientID%> option").each(function () { if ($(this).text() == $("#<%=HFCounty.ClientID%>").val()) { $(this).attr("selected", true); }
阅读全文
posted @ 2016-08-14 14:07 码农丶Coding
阅读(594)
评论(0)
推荐(0)
2016年7月6日
js 数值格式化函数
摘要: function ForDight(Dight,How){ var Dight = Math.round (Dight*Math.pow(10,How))/Math.pow(10,How); return Dight; } //ForDight(Dight,How):数值格式化函数; //Dight:要格式化的 数字; //How::要保留的小数位数。
阅读全文
posted @ 2016-07-06 14:20 码农丶Coding
阅读(1061)
评论(0)
推荐(0)
2016年6月23日
ArrayList构造函数
摘要: //1.摘要: //初始化 System.Collections.ArrayList 类的新实例,该实例为空并且具有默认初始容量。 // public ArrayList(); ArrayList arraylist = new ArrayList(); //2.摘要: //初始化 System.Collections.ArrayList 类的新实例,该实例包含从指定集合复制的元素并且具...
阅读全文
posted @ 2016-06-23 15:05 码农丶Coding
阅读(5384)
评论(0)
推荐(0)
2016年4月21日
取汉子拼音首字母的C#和VB.Net方法
摘要: 转载http://blog.fwhyy.com/2012/03/take-the-first-initials-method-of-csharp-and-vbnet/
阅读全文
posted @ 2016-04-21 09:38 码农丶Coding
阅读(612)
评论(0)
推荐(0)
JS中的Replace只会替换第一处解决办法
摘要: 解决这个问题只需将replace的第一个参数使用正则的方式即可,代码如下: 1 var reg = new RegExp(",","g"); 2 var str = "0CEA65D5-DB8E-4876-A6F8-C88AC7F0E185,E846C244-8A19-4374-879B-0B1DC
阅读全文
posted @ 2016-04-21 09:15 码农丶Coding
阅读(3908)
评论(0)
推荐(0)
2016年3月23日
正确的IP地址正则表达式
摘要: ((2[0-4]\d|25[0-5]|[01]?\d\d?)\.){3}(2[0-4]\d|25[0-5]|[01]?\d\d?)
阅读全文
posted @ 2016-03-23 16:40 码农丶Coding
阅读(358)
评论(0)
推荐(0)
2015年12月29日
C# winform Datagridview 标题居中
摘要: DataGridView1.ColumnHeadersDefaultCellStyle.Alignment=DataGridViewContentAlignment.MiddleCenter
阅读全文
posted @ 2015-12-29 19:13 码农丶Coding
阅读(5473)
评论(0)
推荐(0)
2015年12月15日
ASP.NET中ListBox控件的使用
摘要: 文章来源:http://www.cnblogs.com/fengzheng126/archive/2012/04/10/2441551.htmlListBox控件属性介绍:SelectIndex:当前选中的列表项的序号。SelectItem:当前选中的列表项。清除列表框中全部的列表代码://获取列表...
阅读全文
posted @ 2015-12-15 18:25 码农丶Coding
阅读(361)
评论(0)
推荐(0)
ASP.NET使用ImageMap控件
摘要: 文章来自:http://www.baike369.com/content/?id=5773
阅读全文
posted @ 2015-12-15 17:36 码农丶Coding
阅读(250)
评论(0)
推荐(0)
ASP.NET Calendar(日历控件)
摘要: 定义和用法Calendar 控件用于在浏览器中显示日历。该控件可显示某个月的日历,允许用户选择日期,也可以跳到前一个或下一个月。属性属性描述.NETCaption日历的标题。2.0CaptionAlign日历标题文本的对齐方式。2.0CellPadding单元格边框与内容之间的空白,以像素计。1.0...
阅读全文
posted @ 2015-12-15 17:13 码农丶Coding
阅读(1153)
评论(0)
推荐(0)
上一页
1
2
3
4
5
下一页
公告