第一种:第二种:第三种: 第四种: 第五种:
分类:
Web开发 时间:
2014-11-14 10:36:57
收藏:
0 评论:
0 赞:
0 阅读:
272
redhat5.4 yum源制做方法1、服务端 1.1 搭建一个web服务器我用nginx做为web服务器。(安装略) 配置nginx 在/usr/local/nginx/conf/nginx.conf配置文件中加入 server { listen 80; server_name mirrors.r...
分类:
其他 时间:
2014-11-14 10:36:47
收藏:
0 评论:
0 赞:
0 阅读:
237
1避免使用深的异常层次结构。2一定要从 System.Exception 或其他常见基本异常之一派生异常。3异常类名称一定要以后缀 Exception 结尾。4应使异常可序列化。 异常必须可序列化才能跨越应用程序域和远程处理边界正确工作。5一定要在所有异常上都提供(至少是这样)下列常见构造函数。 确...
分类:
其他 时间:
2014-11-14 10:36:37
收藏:
0 评论:
0 赞:
0 阅读:
219
Parse error: syntax error, unexpected end of file in *.php on line *解决方法这篇文章主要介绍了PHP错误Parse error: syntax error, unexpected end of file in test.php on...
分类:
Web开发 时间:
2014-11-14 10:36:27
收藏:
0 评论:
0 赞:
0 阅读:
500
一:NSDateNSDate可以?用来表?示时间,可以进?行?一些常见的?日期\时间处理??一个NSDate对象就代表?一个时间? [NSDate date]返回的就是当前时间1)日期对象的格式化操作 // 1,获取当前时间// NSDate *date = [NSDat...
分类:
其他 时间:
2014-11-14 10:36:07
收藏:
0 评论:
0 赞:
0 阅读:
270
Xen 虚拟机默认不允许不同的虚拟机使用不同的系统时间,因此所有虚拟机的系统时间都会同宿主机的系统时间严格同步,用 date 命令修改虚拟机系统时间时虽然提示成功但其实系统时间还是没变。若有独立修改 Xen 虚拟机的特殊需要,可以通过如下方法进行:1、在命令行输入下面命令 #echo 1 > /pr...
分类:
其他 时间:
2014-11-14 10:35:57
收藏:
0 评论:
0 赞:
0 阅读:
336
PHP运行出现Notice : Use of undefined constant 的解决办法Notice: Use of undefined constant ALL_PS - assumed 'ALL_PS' in E:\Server\vhosts\www.lvtao.net\global.ph...
分类:
Web开发 时间:
2014-11-14 10:35:27
收藏:
0 评论:
0 赞:
0 阅读:
185
安装和使用php的mcrypt扩展PHP程序员们在编写代码程序时,除了要保证代码的高性能之外,还有一点是非常重要的,那就是程序的安全性保障。PHP除了自带的几种加密函数外,还有功能更全面的PHP加密扩展库Mcrypt和Mhash。其中,Mcrypt扩展库可以实现加密解密功能,就是既能将明文加密,也可...
分类:
Web开发 时间:
2014-11-14 10:35:17
收藏:
0 评论:
0 赞:
0 阅读:
313
Thinking in Java 4thEditionSource CodeInstructions for downloading, installing and testing the source codeDownload the source code zip file from this ...
分类:
编程语言 时间:
2014-11-14 10:35:07
收藏:
0 评论:
0 赞:
0 阅读:
310
分类:
移动平台 时间:
2014-11-14 10:34:47
收藏:
0 评论:
0 赞:
0 阅读:
328
if(window.orientation!=0){ var obj=document.getElementById('orientation'); alert('横屏内容太少啦,请使用竖屏观看!'); obj.style.display='block';}window.onori...
分类:
移动平台 时间:
2014-11-14 10:34:27
收藏:
0 评论:
0 赞:
0 阅读:
206
现象: 原因:
分类:
其他 时间:
2014-11-14 10:34:18
收藏:
0 评论:
0 赞:
0 阅读:
133
1,安装net-ldap addon ruby library for openldapldap for ruby implements client access LDAP protocol
分类:
其他 时间:
2014-11-14 10:34:07
收藏:
0 评论:
0 赞:
0 阅读:
376
IE默认会在ajax请求时缓存所有的信息,通常这种情况是不合理的。解决办法: 在每次ajax请求的时候,在url后面加上字符,避免缓存jQuery.ajax({ url: today_lottery_url+'?'+ new Date().toTimeString(), type: 'GET', ....
分类:
Web开发 时间:
2014-11-14 10:33:47
收藏:
0 评论:
0 赞:
0 阅读:
132
apachemod_speling.so 忽略URL大小写(自动纠错)打开配置文件 httpd.conf加入LoadModulespeling_modulemodules/mod_speling.so在 加入CheckSpelling on如:CheckSpelling on //开启Spelin....
分类:
Web开发 时间:
2014-11-14 10:33:27
收藏:
0 评论:
0 赞:
0 阅读:
1064
android播放gif我研究过3种第一 :GifView支持android播放gif,效果是 先加载第一帧,然后慢慢加载完其他的针,这样效果视觉很不好,是从模糊到清晰的过程;第二:是流行的把gif图片通过工具分拆成n帧,然后使用逐帧动画播放,我感觉很麻烦的样子;第三 :使用Movie提供的Movi...
分类:
其他 时间:
2014-11-14 10:33:17
收藏:
0 评论:
0 赞:
0 阅读:
190
//Button Delete , delete selected items from databaseprivate void buttonDelete_Click(object sender, EventArgs e){ DialogResult dr = MessageBox.Show...
分类:
Windows开发 时间:
2014-11-14 10:33:10
收藏:
0 评论:
0 赞:
0 阅读:
435
错误原因就是“服务器未能识别 HTTP 头 SOAPAction 的值”。这是由于webservice发生url错误导致的。解决方法: 一、你把webserver地址加上?wsdl既可以解决问题,即http://XXXX/SendService?wsdl。 二、通过添加web引用方式的,你删除...
分类:
Web开发 时间:
2014-11-14 10:32:47
收藏:
0 评论:
0 赞:
0 阅读:
390
linux下安装mysql之后,默认是没有密码的,设置root密码的方法如下:方法一:最简单的方法,也是安装完mysql后,系统提示的方法。使用mysqladmin来完成。shell> mysqladmin -u root password "newpwd"shell> mysqladmin -u ...
分类:
数据库技术 时间:
2014-11-14 10:32:27
收藏:
0 评论:
0 赞:
0 阅读:
212
转载请注明出处:http://blog.csdn.net/guolin_blog/article/details/11100315我个人是比较喜欢逛贴吧的,贴吧里总是会有很多搞笑的动态图片,经常看一看就会感觉欢乐很多,可以释放掉不少平时的压力。确实,比起一张单调的图片,动态图片明显更加的有意思。一般...
分类:
移动平台 时间:
2014-11-14 10:32:17
收藏:
0 评论:
0 赞:
0 阅读:
385