摘要: 先来一个函数,该函数将帮助你对字符串进行分割 1 CREATE function [dbo].[SplitString] 2 ( 3 @Input nvarchar(max), 4 @Separator nvarchar(max)=',', 5 @RemoveEmptyEntries bit=1 6 ) 7 returns @TABLE table 8 ( 9 [Id] int identity(1,1),10 [Value] nvarchar(max)11 ) 12 as13 begin 14 declare @Index int, @E... 阅读全文
posted @ 2013-08-02 15:02 hejiyong 阅读(257) 评论(0) 推荐(0) 编辑
摘要: asp.net当上传附件出现了一直卡死的情况,最终直接超时,你就得检查检查你的配置文件了asp.net中上传超过4M以上的文件,需要修改“Web.Config”文件,如下: 阅读全文
posted @ 2013-08-02 14:53 hejiyong 阅读(175) 评论(0) 推荐(0) 编辑