摘要:
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 阅读全文
摘要:
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 阅读全文
摘要:
$.getJSON("/StoragePoint/ReadStoragePoint/", { id: $("#StoragePoint_Id").val() }, function (data) { $("textarea[id='StoragePoint_AdditionalDetails']").val(data.AdditionalDetails); }).success(function () { alert("second success"); }) .error(function () 阅读全文
摘要:
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 阅读全文
摘要:
$("input[type=hidden][id=FastTrack_DeliveryPoint_Customer_Name]") 阅读全文
摘要:
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. 阅读全文
摘要:
<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="data source=SUZ-H 阅读全文
摘要:
sb.Append(string.Concat("{\"page\":", page, ",")); sb.Append(string.Concat("\"total\":", Math.Ceiling((decimal)soListSorted.Count / rows), ",")); sb.Append(string.Concat("\"records\":", soListSorted.C... 阅读全文
摘要:
<!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... 阅读全文
摘要:
使用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" 阅读全文