摘要: function Ajax(url) { var xmlhttp; if (url.indexOf("?") > 0) { url = url + "&NowDateTimeSign=" + new Date().getTime(); } else { url = url + "?NowDateTimeSign=" + new Date().getTime(); } if (window.ActiveXObject) { xmlhttp = new ActiveXObject('Microsoft.XMLHTTP 阅读全文
posted @ 2012-11-22 13:54 放哨De老鼠 阅读(191) 评论(0) 推荐(0) 编辑
摘要: create function fn_split(@c varchar(2000),@split varchar(2)) returns @t table(col varchar(20)) as begin while(charindex(@split,@c)<>0) begin insert @t(col) values (substring(@c,1,charindex(@split,@c)-1)) set @c = stuff(@c,1,charindex(@split,@c),'') end insert @t(col) values (@c) return 阅读全文
posted @ 2012-11-22 13:51 放哨De老鼠 阅读(164) 评论(0) 推荐(0) 编辑
摘要: declare @akey varchar(255)set @akey = 'userid'-- 在所有存储过程中查找关键字,关键字不区分大小写declare @aname as varchar(700)declare @atext as varchar(8000)declare @acolid as intdeclare @pos as intdeclare @start as intdeclare @end as intdeclare @shorttext as varchar(255)create table #temp_proctext (oid int IDENTIT 阅读全文
posted @ 2012-11-22 13:50 放哨De老鼠 阅读(298) 评论(0) 推荐(0) 编辑
摘要: string connectionstring="server=.;uid=sa;pwd=sa;database=test";SqlBulkCopy sbc = new SqlBulkCopy(Guide.GetConnectionString(SPType.SP_R), SqlBulkCopyOptions.UseInternalTransaction); sbc.BulkCopyTimeout = 5000; sbc.NotifyAfter = dt.Rows.Count; try { //tb_RealShippingFee 向那张表里面写数据 sbc.Destina 阅读全文
posted @ 2012-11-14 17:46 放哨De老鼠 阅读(241) 评论(0) 推荐(0) 编辑
摘要: public DataTable DataReaderToTable(MySqlDataReader dr) { DataTable dt = new DataTable(); DataTable schemaTb = dr.GetSchemaTable();//得到SqlDataReader的结构,相当于表的结构一样,在这里表的结构信息也被存储成了一个信息表。这个信息表相当于两列多行,第一列存储数据结果表的列名称,第二列存储数据结果表对应列的类型。想象一下我们在设计SqlServer数据库的时候得表结构 try { foreach (DataRow sdr in schemaTb.Rows) 阅读全文
posted @ 2012-11-01 15:15 放哨De老鼠 阅读(520) 评论(1) 推荐(0) 编辑
摘要: create function [dbo].[f_getDOWN](@id int) returns @re table(id int) as begin insert into @re select id from tb_productclass where id=@id while @@rowcount>0 insert into @re select a.id from tb_productclass a inner join @re b on a.FatherId=b.id where a.id not in(select id from @re) return e... 阅读全文
posted @ 2012-10-18 13:52 放哨De老鼠 阅读(267) 评论(0) 推荐(0) 编辑
摘要: Create FUNCTION [dbo].[f_getdate]( @begin_date Datetime, --要查询的开始日期 @end_date Datetime, --要查询的结束日期 @bz bit --@bz=0 查询工作日,@bz=1 查询休息日,@bz IS NULL 查询全部日期 )RETURNS @re TABLE(id int identity(1,1),Date datetime,Weekday nvarchar(3)) AS BEGIN DECLARE @tb TABLE(ID int IDENTITY(0,1),a bit) INSERT INTO @tb(a) 阅读全文
posted @ 2012-10-18 13:51 放哨De老鼠 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.cnblogs.com/insus/archive/2012/04/25/2470430.html网友要求做一个文章摘要,由于文章包含有Html标签,在截取文章头200个字符串时,得到的字符串将是一些意想不到的结果。因此让Insus.NET为他解决去除html标签,然后再从去除Html标签之后的结果截取200个字符串。实现这个功能,可以使用RegularExpressions正则表达式:. 匹配除 "\n" 之外的任何单个字符。* 匹配前面的子表达式零次或多次。? 匹配前面的子表达式零次或一次。因此只要把文章的"<.*?>& 阅读全文
posted @ 2012-09-22 16:31 放哨De老鼠 阅读(185) 评论(0) 推荐(0) 编辑
摘要: select*,row_number()over(partitionbyitemorderbydate)astfromtable1item 要group by的字段 阅读全文
posted @ 2012-09-04 15:30 放哨De老鼠 阅读(176) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Management;public partial class Default : System.Web.UI.Page{ protected void Page_Load(object sender, EventArgs e) { SetNetworkAdapter(); } void SetNetw... 阅读全文
posted @ 2012-08-09 16:25 放哨De老鼠 阅读(355) 评论(0) 推荐(0) 编辑
摘要: 文件打包器下载地址:http://download-codeplex.sec.s-msft.com/Download/Release?ProjectName=dotnetzip&DownloadId=258012&FileTime=129571576121970000&Build=19153<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" 阅读全文
posted @ 2012-07-13 16:50 放哨De老鼠 阅读(283) 评论(0) 推荐(0) 编辑
摘要: public string isExists(string str) { return Regex.Match(str, @"[+-]?\d+(.\d{2})?").Value; } 阅读全文
posted @ 2012-06-30 15:51 放哨De老鼠 阅读(172) 评论(0) 推荐(0) 编辑
摘要: //判断某字符是否包含在字符数组中function IsStringInArray(p_Array, p_str) { for (var i = 0; i < p_Array.length; i++) { if (p_Array[i] == p_str) { return true; } } return false;}//非空验证function IsNotEmpty(str) { if (str.replace(/(^[\s]*)|([\s]*$)/g, "") == "" || str.replace(/(^[\s]*)|([\s]*$)/g 阅读全文
posted @ 2012-06-30 15:49 放哨De老鼠 阅读(215) 评论(0) 推荐(0) 编辑
摘要: static System.Data.DataTable dt = new System.Data.DataTable();/// <summary> /// 读取数据源 /// </summary> /// <param name="sExcelFile"></param> /// <param name="dgBom"></param> public void ReadExcel(string sExcelFile) { try { dt.Clear(); dt_date.Cle 阅读全文
posted @ 2012-06-30 15:46 放哨De老鼠 阅读(352) 评论(0) 推荐(0) 编辑
摘要: public string ConvertString(string p_str) { if (p_str.Length > 0) { p_str = p_str.Replace("'", "'+char(39)+'"); p_str = p_str.Replace("-", "'+char(45)+'"); p_str = p_str.Replace(",", "'+char(44)+'"); p_str = p 阅读全文
posted @ 2012-06-30 15:46 放哨De老鼠 阅读(292) 评论(0) 推荐(0) 编辑
摘要: replace(replace(字段名,CHAR(10),''),CHAR(13),'') 阅读全文
posted @ 2012-05-21 11:53 放哨De老鼠 阅读(136) 评论(0) 推荐(0) 编辑
摘要: public string isExists(string str) { return Regex.Match(str, @"[+-]?\d+(.\d{2})?").Value; }Response.Write( isExists("<b>-AU$15.08</b>")); 阅读全文
posted @ 2012-05-09 17:54 放哨De老鼠 阅读(762) 评论(0) 推荐(0) 编辑
摘要: 关键字: update set from下面是这样一个例子:两个表a、b,想使b中的memo字段值等于a表中对应id的name值 表a:id, name 1 王 2 李 3 张 表b:id,ClientName 1 2 3 (MS SQL Server)语句:update bset ClientName= a.namefrom a,bwhere a.id = b.id(Oralce)语句:update bset (ClientName)=(SELECT nameFROM a W... 阅读全文
posted @ 2012-03-21 11:35 放哨De老鼠 阅读(23031) 评论(0) 推荐(0) 编辑
摘要: declare @newid int EXEC 存储过程名称 参数值, @newid OUTPUT print @newid 阅读全文
posted @ 2012-03-14 17:55 放哨De老鼠 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 找到WdatePicker.js添加CurentTime()方法function CurentTime() { var now = new Date(); var year = now.getFullYear(); //年 var month = now.getMonth() + 1; //月 var day = now.getDate(); //日 var hh = now.getHours(); //时 var mm = now.getMinutes(); //分 var clock = year + "-"; if (month < 10) clock += & 阅读全文
posted @ 2012-02-17 14:59 放哨De老鼠 阅读(2670) 评论(0) 推荐(0) 编辑