发布时间:2015-05-06 17:55:30
//把文件路径转化成流的形式进行读取 private byte[] Returnbyte(string strpath) { //以二进制方式读文件 FileStream fsMyfile = new FileStream(strpath, FileMode.OpenOrCreate, FileAccess.R.........【阅读全文】
发布时间:2015-04-23 11:38:09
byte[] fileData = imagemodel.LSCIMAGE; // System.IO.MemoryStream ms = new System.IO.MemoryStream(fileData); string imgName = imagemodel.CHECKNO + ".jpg"; &.........【阅读全文】
发布时间:2015-04-13 10:25:04
1、绑定控件 <%# eval_r("id"))%> 若要使用方法 <%# 方法名("eval_r("id")")%> 2 调用后台代码中的方法 <%=方法名(参数)%> &.........【阅读全文】
发布时间:2015-04-01 10:09:06
case when ishsp='0' then'否' WHEN ishsp='1' then '是' end as ishsp......【阅读全文】
发布时间:2015-03-24 15:52:55
主要是建序列和触发器:一张表建一个触发器和序列;例如触发器:create or replace trigger SYS_CODE_INS_TRG before insert on "SYS_CODE" for each row begin if inserting then if :NEW."ID" is null then select SY.........【阅读全文】