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