摘要:
Create FUNCTION [dbo].[SplitToTable] ( @SplitString nvarchar(max), @Separator nvarchar(10)=' ' ) RETURNS @SplitStringsTable TABLE ( [id] i... 阅读全文
摘要:
发送Get请求HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);req.Method = "GET";req.Timeout = config.Timeout;//设置超时时间HttpWebResponse res = (Http... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Data;using System.Reflection;namespace Framework.Utility{ /// /// 反射操作工具类 /// ... 阅读全文
摘要:
1、在服务器上注册服务2、启动服务:services.msc3、客户端创建服务接口 object Get(string key); List GetKeys(); List GetValues(); void Set(string key, obje... 阅读全文
摘要:
现象:windows server2008服务器,MVC使用NHiberate连接Oracle11g,程序部署到IIS后无法访问数据库,抛上述异常;在服务器上安装VS调试可以访问数据库解决方法:连接池-->高级设置-->Enable 32-Bit Applications设为true(默认为fals... 阅读全文
摘要:
现象:使用EF新增记录时,一直报上述异常,网上说是值为空、主键外键未设等原因导致,但是改正这些情况下问题依然解决过程:异常中有一句(请参见内部异常),一直都没有当回事,后来实在没办法就静下心来看了看,内容异常内容如下:InnerException: System.Data.SqlClient.Sq... 阅读全文
摘要:
异常原因:配置文件内容的顺序有一定要求configSections-->connectionStrings-->appSettings 阅读全文
摘要:
现象:MVC项目部署到IIS(7.5)后,浏览时只显示文件目录,不是网站解决办法1、服务器安装程序对应的Framework版本2、服务器安装程序对应的MVC版本3、安装CGI和ISAPI扩展:控制面板-->Windows功能-->Internet信息服务-->万维网服务-->应用程序开发功能-->勾... 阅读全文
摘要:
function on(node,eventType,handler){ //e=window.event||e; node=typeof node=="string"?document.getElementById(node):node; if(document.all) //IE ... 阅读全文
摘要:
1、@@ERROR 返与@@ERROR 近语句错误码局限于DML语句select语句执行现错误则返等于0错误码没错则返0通使用判断语句没执行功-- Create Schema if not one exists with same name and owner set @stmtS = 'cr... 阅读全文