摘要: CREATE FUNCTION [dbo].[SplitString] ( -- Add the parameters for the function here @SplitString nvarchar(max), @Separator nvarchar(10)='') RETURNS @result table ( [Id] int, [Text] nvarchar(500) ) AS Begin DECLARE @CurrentIndex int; DECLARE @NextIndex int; DECLARE @ReturnText nvarchar(500); SE 阅读全文
posted @ 2013-02-05 09:11 只想做好 阅读(1836) 评论(0) 推荐(0) 编辑
摘要: http://trentrichardson.com/examples/timepicker/脚本下载地址 : http://files.cnblogs.com/Mac_Hui/jquery-ui-timepicker-addon.7zAdd a simple datetimepicker to jQuery UI's datepicker$('#basic_example_1').datetimepicker();Add only a timepicker:$('#basic_example_2').timepicker();Format the ti 阅读全文
posted @ 2012-12-24 16:31 只想做好 阅读(7322) 评论(0) 推荐(0) 编辑
摘要: $.getJSON("/StoragePoint/ReadStoragePoint/", { id: $("#StoragePoint_Id").val() }, function (data) { $("textarea[id='StoragePoint_AdditionalDetails']").val(data.AdditionalDetails); }).success(function () { alert("second success"); }) .error(function () 阅读全文
posted @ 2012-07-30 15:10 只想做好 阅读(124) 评论(0) 推荐(0) 编辑
摘要: There is a error as shown in picture below when you deploy mcv project. You shoud give "NETWORK SERVICE" full control on you web site folder.resolving 阅读全文
posted @ 2012-07-20 10:30 只想做好 阅读(2893) 评论(0) 推荐(0) 编辑
摘要: $("input[type=hidden][id=FastTrack_DeliveryPoint_Customer_Name]") 阅读全文
posted @ 2012-07-10 10:10 只想做好 阅读(282) 评论(0) 推荐(0) 编辑
摘要: visual studio2010 在windows7 的环境下,很可能会出现以上问题1. 不能加载database project2. Package 'RadLangSvc.Package, RadLangSvc.VS, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' failed to load." 解决办法:打开安装文件WCU->DAC 安装MSI's i. DACFramework_enu.msi ii. DACProjectSystemSetup_enu. 阅读全文
posted @ 2011-11-25 10:37 只想做好 阅读(262) 评论(1) 推荐(0) 编辑
摘要: <add name="OperativeModelContainer" connectionString="metadata=res://*/Models.Operative.OperativeModel.csdl|res://*/Models.Operative.OperativeModel.ssdl|res://*/Models.Operative.OperativeModel.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=SUZ-H 阅读全文
posted @ 2011-11-25 09:22 只想做好 阅读(236) 评论(0) 推荐(0) 编辑
摘要: sb.Append(string.Concat("{\"page\":", page, ",")); sb.Append(string.Concat("\"total\":", Math.Ceiling((decimal)soListSorted.Count / rows), ",")); sb.Append(string.Concat("\"records\":", soListSorted.C... 阅读全文
posted @ 2010-12-03 09:46 只想做好 阅读(509) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Con... 阅读全文
posted @ 2010-10-26 09:17 只想做好 阅读(606) 评论(0) 推荐(0) 编辑
摘要: 使用Log4Net步骤如下:1:添加对log4net.dll的引用;2:配置web.config代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--configurationconfigSectionssectionname="log4net"type="System.Configuration.IgnoreSectionHandler"/section/configSectionslog4netdebug="false" 阅读全文
posted @ 2010-10-14 15:08 只想做好 阅读(3087) 评论(0) 推荐(1) 编辑