it
临冰听雪
这个作者很懒,什么都没留下…
展开
-
查询整个数据库中某个特定值所在的表和字段的方法
CREATE PROCEDURE [dbo].[SP_FindValueInDB]( @value VARCHAR(1024)) ASBEGIN -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements.SET NOC转载 2014-11-10 11:47:23 · 738 阅读 · 0 评论 -
js获取url值
// 获取地址栏的参数数组 function getUrlParams() { var search = window.location.search; // 写入数据字典 var tmparray = search.substr(1, search.length).split("&"); var paramsArray =转载 2014-11-13 15:39:50 · 672 阅读 · 0 评论 -
分页绑定Test
<webdiyer:AspNetPager ID="AspNetPager1" runat="server" Width="100%" AlwaysShow="false" CenterCurrentPageButton="True" FirstPageText="首页" LastPageText="末一页" NextPageText="下一页" Prev原创 2014-10-15 11:11:27 · 426 阅读 · 0 评论 -
ASCII码转字符串
public static int Asc(string character) { if (character.Length == 1) { System.Text.ASCIIEncoding asciiEncoding = new System.Text.ASCIIEncoding(); int intAsciiCode = (int)asciiEncoding.转载 2014-11-05 13:47:47 · 776 阅读 · 0 评论