摘要:
ORDER BY nlssort(NAME, 'NLS_SORT=SCHINESE_PINYIN_M') 阅读全文
摘要:
out.flush(); out是PrintWriter的实例 public void flush() Flush the stream. response.flushBuffer(); response是HttpServletResponse的实例 public void flushBuffer( 阅读全文
摘要:
流的方式下载附件 <!-- @author :daisy @date : 2011-12-04 @note : 从数据库中读取BLOB图片显示 --> <%@page import="com.cwai.dao.DBManager"%> <%@ page contentType=" text/html 阅读全文
摘要:
<input type="button" value="打印" class="btn_small" style="cursor: pointer;" onClick="print(6)"/> function print(id){ window.open('<%= path%>/work/xzgl/ 阅读全文
摘要:
value="你的提示文字" onFocus="if(value==defaultValue){value='';this.style.color='#000'}" onBlur="if(!value){value=defaultValue;this.style.color='#999'}" sty 阅读全文
摘要:
select object_name,machine,s.sid,s.serial# from v$locked_object l,dba_objects o ,v$session s where l.object_id = o.object_id and l.session_id=s.sid; a 阅读全文
摘要:
<input type="text" maxlength="11" /> 效果ok, 当 <input type="number" maxlength="11" />时maxlength失效,长度可以无限输入。 解放方案: <input type="number" oninput="if(value 阅读全文