
Web
iteye_17318
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
IE与Firefox下对CSS解析的区别
1、IE与Firefox下对CSS解析的区别,这是我在使用中的一些经验,拿出来和大家分享,希望大家继续 对高度的解析 IE:将根据内容的高度变化,包括未定义高度的图片内容,即使定义了高度,当内容超过高度时,将使用实际高度 Firefox:没有定义高度时,如果内容中包括了图片内容,MF的高度解析是根据印刷标准,这样就会造成和实际内容高度不符合的情况;当定义了高度,但是内容超过高度时,内容会超出定义的...2006-08-22 13:38:45 · 184 阅读 · 0 评论 -
url rewrite
http://urlrewritefilter.googlecode.com/svn/trunk/src/doc/manual/3.1/index.html urlrewritefilter-3.1.0.zip 1、Add the following to your WEB-INF/web.xml (add it near the top above y...2008-07-25 13:13:00 · 140 阅读 · 0 评论 -
HTML/CSS/JavaScript code
1. oncontextmenu="window.event.returnValue=false" 将彻底屏蔽鼠标右键 <table border oncontextmenu=return(false)><td>no</table> 可用于Table 2. <body onselectstart="return false"...2006-07-30 09:01:05 · 133 阅读 · 0 评论 -
iFrame can't save session & cookie
RT so iFrame not suit of use.2006-05-29 13:46:11 · 128 阅读 · 0 评论 -
Apache 防盗链(Apache Anti-Leech)技术的简单实现
一. 使用 rewrite 技术实现 Apache 防盗链 Apache 防盗链的第一种实现方法,可以用 rewrite 实现。首先要确认 Apache 的rewrite module 可用:能够控制 Apache httpd.conf 文件的,打开 httpd.conf,确保有这么一行配置: LoadModule rewrite_module modules/mod_rewrite.s 然...2008-07-18 11:23:00 · 159 阅读 · 0 评论 -
二级域名间用户信息存取,SSO
采用cookie方式记录用户信息,其可以在二级域名之间存取。 cookie.setDomain("ab..com") ; cookie.setMaxAge(-1); // 该设置可使cookie生存期在浏览器关闭后自动失效。 另:跨域名的SSO可采用数据库,文件等方式实现。...2008-07-18 11:21:00 · 141 阅读 · 0 评论 -
Web application 2.0 features (2)
iCalendar URLs for date-related data If your application’s data is date-related, then make the data available in iCalendar format, to allow people to view the data in calendaring software. For exampl...2008-07-02 01:42:05 · 226 阅读 · 0 评论 -
Web application 2.0 features (1)
After you have built the initial version of a web application, it can be hard to know what to add in version 2.0, tricky to know how add value and make it expensive software , and near-impossible to u...2008-07-02 01:39:07 · 173 阅读 · 0 评论 -
Java Session
web-app implements HttpSessionListener; public void sessionCreated(HttpSessionEvent se); // session begin public void sessionDestroyed(HttpSessionEvent se) // session end <listener> &l...2006-05-13 13:50:21 · 100 阅读 · 0 评论 -
RSS
<?xml version="1.0" encoding="UTF-8" ?> <rss version="2.0"> <channel> <title></title> <link></link> <language&2006-05-13 13:33:20 · 423 阅读 · 0 评论 -
xfire开发web service及调用
xfire配置service <service> <name>Hello</name> <namespace>myHello</namespace> <serviceClass>com.sun.IHello</serviceClass> <implementationCl2008-08-21 11:34:00 · 170 阅读 · 0 评论