摘要:
创建Function Create FUNCTION [dbo].[SplitStr] (@List nvarchar(max) ,@Delim varchar(255)) RETURNS TABLE AS RETURN ( SELECT [Value] FROM ( SELECT [Value] 阅读全文
摘要:
SQL Server中调用C#类中的方法实例(使用.NET程序集) SQL Server: Could not find type in the assembly 服务器可能资源不足,或者不信任该程序集,因为它的 PERMISSION_SET 设置为 EXTERNAL_ACCESS 或 UNSAFE 阅读全文
摘要:
declare @allName varchar(max) = '' select @allName = @allName + [Name] from TB_User select @allName 阅读全文
摘要:
ASP.NET中maxRequestLength和maxAllowedContentLength的区别;上传大文件设置IIS7文件上传的最大大小 <system.web> <httpRuntime maxRequestLength="2147483647" executionTimeout="360 阅读全文
摘要:
datalist 阅读全文
摘要:
ep.Workbook.View.ActiveTab = 0; 阅读全文
摘要:
//主页面去除滚动条,仅iframe内有滚动条 var menuFrame = document.getElementById('menuFrame'); //赋予iframe初始高度 menuFrame.height = window.innerHeight - document.getEleme 阅读全文
摘要:
ASP.NET WEB 应用程序在发布期间预编译(彻底告别 .NET 网站首次访问速度慢的问题) 阅读全文
摘要:
CSS布局:sticky定位 stick定位 一如其名:它随“正常”文档流而动,直到规定位置,尔后“粘”在那里;或者,当它发现自己可以跟随“正常”文档流而脱离sticky位置时,就果断离开从而加入文档流。 阅读全文