border-radius是CSS3圆角属性,用来实现DIV层的4个边框画成圆角。一、语法:border-radius:none|{1,4}[/{1,4}]如:border-radius:5px5px5px5px;二、取值::由浮点数字和单位标识符组成的长度值。不可为负值。三、说明:border-
...
分类:
Web程序 时间:
2014-05-01 08:28:26
阅读次数:
471
HTTP协议是无状态的。从客户端到服务器的连接可以在每个请求之后关闭。但是一般需要把一些客户端信息从一个页面传送给另一个页面。在保存状态的各种方式中,主要区别是:状态是存储在客户端还是服务器上。
分类:
Web程序 时间:
2014-05-01 08:24:40
阅读次数:
311
在VC中使用WebBrowser控件的两方法黄森堂(vcmfc)著ClassWizard方式:1.创建包装类:View->ClassWizard->Add
Class->Form a Type
Library->C:\winnt\system32\shdocvw.dll->只选择IWebBrowse...
分类:
Web程序 时间:
2014-05-01 08:15:32
阅读次数:
470
using System;using System.Collections.Generic;using
System.Web;using System.Web.UI;using System.Web.UI.WebControls;using
System.IO;using System.Drawin...
分类:
Web程序 时间:
2014-05-01 08:07:45
阅读次数:
408
nginxserver { listen 80; server_name localhost;
root /apps/web/; index index.html; location / { } location /server { ...
分类:
其他好文 时间:
2014-05-01 08:03:15
阅读次数:
902
1、web.xml1 2 struts23
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter4 5 6
struts27 /*8 2、struts.xml 1 2 5 6 7 ...
分类:
其他好文 时间:
2014-05-01 07:30:35
阅读次数:
274
点登录的时候,在url后面总会加上一个;jsessionid=xxx 使找不到页面 的404
Bug ,百思不得其解,最后终于找到解决方案,实验最终成功解决了这个bug,下面是解决方案1,增加依赖 org.tuckey urlrewritefilter
4.0.3 2,在web.xml中配置过滤器....
分类:
其他好文 时间:
2014-05-01 07:22:26
阅读次数:
407
动态请求数据来更新页面是现在非常常用的方法,比如博客评论的分页动态加载,微博的滚动加载和定时请求加载等。这些情况下,动态请求返回的数据一般不是已拼好的HTML就是JSON或XML,总之不在浏览器端拼数据就在服务器端拼数据。不过,从传输量方面来看,返回HTML不划算,而在web传输方面,现在更多的是使...
分类:
Web程序 时间:
2014-05-01 05:34:31
阅读次数:
462
1 注意struts2-spring-plugin.jar的导入。
Unabletoloadconfiguration.-action 异常。需要导入这个包2 很久都跑不通的话,可以变量可以换个值试一试
分类:
其他好文 时间:
2014-05-01 04:02:05
阅读次数:
319
BeanFactoryBeanFactory是Spring的IOC容器的接口,用于获取Java对象。ApplicationContext接口也间接扩展了BeanFactory接口,是BeanFactory接口的子接口,继承树如下所示:BeanFactory↑
↑ListableBeanFactory...
分类:
其他好文 时间:
2014-05-01 03:10:47
阅读次数:
491