摘要: CSS Hack常见的有三种形式:CSS属性Hack、CSS选择符Hack以及IE条件注释Hack, Hack主要针对IE浏览器。 1 /* CSS属性级Hack */ 2 color:red; /* 所有浏览器可识别*/ 3 _color:red; /* 仅IE6 识别 */ 4 *color:r... 阅读全文
posted @ 2015-07-27 14:52 goodpan 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 本地网站上传服务器后出现以下错误:Server Error in '/' Application.Runtime ErrorDescription:An application error occurred on the server. The current custom error settin... 阅读全文
posted @ 2015-07-25 07:42 goodpan 阅读(1108) 评论(0) 推荐(0) 编辑
摘要: webconfig中配置如下: 配置后在本地运行正常,上传到服务器后出现错误,把data source=.\SQLEXPRESS;改成服务器ip运行正常。 阅读全文
posted @ 2015-05-17 22:08 goodpan 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 通过程序包控制台安装Newtonsoft.Json,NuGet会自动加载最新的版本是6.0.8,结果编译程序后出现如下错误: 未能加载文件或程序集“Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b... 阅读全文
posted @ 2015-05-17 22:03 goodpan 阅读(3969) 评论(0) 推荐(2) 编辑
摘要: 你是否需要GitHub? 要了解Github,我们首先要知道Git,Git是管理代码的工具,写代码不是件轻松的事儿,一个人写的时候已经不轻松了,一群人写就更不轻松 了,但这世界上很多事都是怎么不轻松怎么来的,大部分人都会和别人一起写代码,问题在于,这么多人写一个东西,你今天写一点,我明天写一点,然... 阅读全文
posted @ 2015-01-25 12:38 goodpan 阅读(232) 评论(0) 推荐(0) 编辑
摘要: c语言中的数组名的本质是什么,数组名是指针吗?1、数组名是数组元素的首地址#include #include void main() { int a[10] = {1, 2, 3, 4, 5, 6, 7, 8,9, 10}; printf("a:%d &a:%d :%d \n", ... 阅读全文
posted @ 2014-12-17 15:59 goodpan 阅读(1595) 评论(0) 推荐(0) 编辑