360更新补丁后,网站就打不开aspx文件了,后来一查是framework2.0的KB2844285这个补丁引起的。把它卸载掉就ok了!
分类:
移动开发 时间:
2015-05-17 23:16:10
阅读次数:
336
未找到应用程序的aps-environment的权利字符串 获取deviceToken的时候,应用程序报出下面的错误:Error in registration. Error: Error Domain=NSCocoaErrorDomain Code=3000 "未找到应用程序的“aps-e...
分类:
其他好文 时间:
2015-05-17 20:05:15
阅读次数:
106
在创建虚拟机时可以直接访问XenServer物理机的DVD光驱,但这样相对就不是很方便了,而且在企业中这样做也不实际。所以今天我们创建个CIFS存储供ISO存储使用。1.准备共享文件夹1.1新建文件夹"ISOlibrary",将需要用的ISO镜像存放在该文件夹1.2共享文件夹ISOlibrary,赋予Everyon..
分类:
其他好文 时间:
2015-05-17 18:56:23
阅读次数:
160
服务器端操作Cookie,主要注意会使用以下三个类:HttpCookie,HttpResponse,HttpRequest关于HttpCookie:属性描述例子Domain获取或设置与此Cookie关联的域Expires获取或设置域的过期时间HasKeys获取一个值,通过该值指示Cookie是否具有...
分类:
其他好文 时间:
2015-05-17 15:13:42
阅读次数:
110
一、这个App整体的架构划分:分为四大模块:1.app模块2.common模块3.domain模块4.model模块app模块的依赖:dependencies { compile fileTree(dir: 'libs', include: ['*.jar'])compile project(':d...
分类:
移动开发 时间:
2015-05-17 12:02:04
阅读次数:
158
the first thing that we need to do (after creating a new WPF project) is add a few references. You can do this by by right-clicking on the references ...
分类:
其他好文 时间:
2015-05-17 11:58:00
阅读次数:
177
1.When should i use str() and when should i use repr() ?Almost always use str when creating output for end users.repr is mainly useful for debugging a...
分类:
其他好文 时间:
2015-05-16 23:12:32
阅读次数:
139
NSString *urlStr = [NSString stringWithFormat:@"%@?uid=%@&uname=%@",KQuestionnaireUrl,model.idStr,model.real_name];
urlStr = [urlStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NS...
分类:
移动开发 时间:
2015-05-16 18:28:04
阅读次数:
259
1.生成Cookiepublic static void SetDataByCookie(string mainKey, string subKey, string value, string domain, int expireHours){ var cookie = Request.Coo...
分类:
Web程序 时间:
2015-05-16 11:43:51
阅读次数:
132
hp警告Creating default object from empty value 问题的解决方法解决方法是找到报错的位置然后看哪个变量是没有初始化而直接使用的,将这个变量先实例化一个空类。如:复制代码 代码如下:$ct = new stdClass();修改文件相应代码,如:复制代码 代码如...
分类:
其他好文 时间:
2015-05-15 19:19:47
阅读次数:
198