摘要: 菜单->生成->配置管理器->给要生成的项目打钩 阅读全文
posted @ 2014-08-20 11:41 猎鹰-aspnet 阅读(2646) 评论(0) 推荐(2) 编辑
摘要: 1.左外连接 (左边的表不加限制);右外连接(右边的表不加限制);全外连接(左右两表都不加限制)2.外连接(Outer Join):outer join则会返回每个满足第一个(顶端)输入与第二个(底端)输入的联接的行。它还返回任何在第二个输入中没有匹配行的第一个输入中的行。外连接分为三种: 左外连接... 阅读全文
posted @ 2014-06-09 15:06 猎鹰-aspnet 阅读(2358) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2014-05-23 19:18 猎鹰-aspnet 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 方法/步骤1登陆plsql,执行sql语句,输出的中文标题显示成问号????;条件包含中文,则无数据输出 步骤阅读 2输入sql语句select * from V$NLS_PARAMETERS查看字符集,查看第一行value值是否为简体中文 步骤阅读 3进入注册表,依次单击HKEY_LOCAL_MA... 阅读全文
posted @ 2014-05-19 17:37 猎鹰-aspnet 阅读(1058) 评论(0) 推荐(0) 编辑
摘要: 1: using System; 2: using System.Collections.Generic; 3: using System.Linq; 4: using System.Web; 5: using System.Runtime.Serialization.Json; 6: using System.IO; 7: using System.Text; 8: using System.Text.RegularExpressions; 9: 10: /// 11: /// JSON序列化和反序列化辅助类 12: /// 13: publi... 阅读全文
posted @ 2014-02-14 11:58 猎鹰-aspnet 阅读(1854) 评论(0) 推荐(1) 编辑
摘要: 错误描述:Unable to make the session state request to the session state server. Please ensure that the ASP.NET State service is started and that the client and server ports are the same.If the server is on a remote machine, please ensure that it accepts remote requests by checking the value ofHKEY_LOCAL_ 阅读全文
posted @ 2013-09-03 17:08 猎鹰-aspnet 阅读(1117) 评论(0) 推荐(0) 编辑
摘要: 1.IE8下兼容问题,这个最好处理,转化成IE7兼容就可以。在头部加如下一段代码,然后只要在IE7下兼容了,IE8下面也就兼容了:1. 2. 2.flaot浮动造成IE6下面双倍边距问题,这个最常见,也最好处理,!important解决,比如margin-left:10px!important;/*IE7,IE8,FF下是10PX*/;margin-left:5px;/*IE6下属性写的是5PX,但在显示出来的是10px3.清除块display,这个可以解决浮动造成的块,造成块后,当DIV背景填色或填图片的时候,会出现背景断开或差一小块。这种兼容出现的不太多,我做到现在,只遇到过两次,方法.. 阅读全文
posted @ 2013-08-30 11:30 猎鹰-aspnet 阅读(341) 评论(0) 推荐(0) 编辑
摘要: 方法 OPTIONS 失败于 “https://xxxx/svn/xxxx”: 无法连接到服务器 (https://xxxx)要留意 https 使用了443 端口,检查防火墙是否开放了该端口。步骤:1、打开控制面板找到windows防火墙 2.双击windows防火墙,在弹出的面板中找到高级设置 3.找到Svn Server端口号,先单击选中,再反键点击“启用规则”改过后,再导项目到本地库执行成功了 阅读全文
posted @ 2013-08-07 16:58 猎鹰-aspnet 阅读(4409) 评论(0) 推荐(0) 编辑
摘要: 如果要使用session的话,在handler的代码中添加System.Web.SessionState的引用,并让这个handler继承IRequiresSessionState接口,一定要继承这个接口,否则会出错的 阅读全文
posted @ 2013-08-07 11:31 猎鹰-aspnet 阅读(512) 评论(0) 推荐(0) 编辑
摘要: 这是一个验证是否为数字的例子:Regexreg=newRegex(@"^[0-9]+\.{0,1}[0-9]*$");reg.IsMatch(textBox1.Text) 阅读全文
posted @ 2013-07-18 15:43 猎鹰-aspnet 阅读(249) 评论(0) 推荐(0) 编辑