摘要:
使用EL表达式时,遇到了页面直接显示“time: ${requestScope.time}”,不解析的情况。查找资料原因是:在默认情况下,Servlet 2.3 / JSP 1.2是不支持EL表达式的,而Servlet 2.4 / JSP 2.0支持。刚好我使用Maven创建的webapp项目,we 阅读全文
摘要:
http://coding.smashingmagazine.com/2013/08/09/absolute-horizontal-vertical-centering-css/ 阅读全文
摘要:
创建Java应用程序项目mvn archetype:generate -DgroupId=com.liq -DartifactId=firstApp -DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeCatalog=interna 阅读全文
摘要:
踩到一个IE8的parseInt的坑: Chrome: 阅读全文
摘要:
powershell小工具 阅读全文
摘要:
public static bool IsAjaxRequest(HttpRequest request) { if (request == null) { throw new ArgumentNullException("request"); } return ((request... 阅读全文
摘要:
1. 当前端口被哪个进程占用 netstat aon|findstr 80 tasklist|findstr 2448 2. 去除文件只读属性 attrib Common.dll r 3. 拷贝文件夹 xcopy /y /s ..\MyDevTool\ForDebug\Some\ .\ 阅读全文
摘要:
场景:数据库存储的是服务器时间,需要根据浏览器端客户的时区导出时间。 图示: C< offsetClientTime B< offsetServerTime A server utc client 1. 客户端获取时间差: function getTimeOffset(){ var now... 阅读全文