上一页 1 ··· 6 7 8 9 10 11 12 下一页
  2008年3月25日
摘要: select datepart(year,getdate())*100+datepart(month,getdate()) 显示为200704 select Convert(varchar(10),getdate(),120) 2006-05-12 select CONVERT(varchar, getdate(), 120 ) 2006-05-12 11:06:08 select r... 阅读全文
posted @ 2008-03-25 20:31 heart-in-sky 阅读(188) 评论(0) 推荐(0) 编辑
  2008年3月24日
摘要: 1:打开新窗口(后台)HttpContext.Current.Response.Write("<script language='javascript'>window.open('"+"../Report/Print.aspx?formno="+formno +"');</script>"); 2:打开新窗口(前台)onclick="javascript:window.op... 阅读全文
posted @ 2008-03-24 17:26 heart-in-sky 阅读(153) 评论(0) 推荐(0) 编辑
  2008年3月21日
摘要: if(document.getElementById('TabControl1_tabOriginal_UC_TargetRequirements1_K2FileName').value =='') { mes='文件名不能为空!'; alert(mes); return false; } 阅读全文
posted @ 2008-03-21 13:11 heart-in-sky 阅读(273) 评论(0) 推荐(0) 编辑
  2008年3月20日
摘要: private void DemonstrateMergeMissingSchema() { // Create a DataSet with one table, two columns, // and three rows. DataSet dataSet = new DataSet("dataSet"); DataTable table = new DataTa... 阅读全文
posted @ 2008-03-20 14:01 heart-in-sky 阅读(1628) 评论(0) 推荐(0) 编辑
摘要: Services.msc //打开Services管理窗口 inetmgr //打开IIS管理器 iisreset //重起IIS appwiz.cpl //打开新增删除程式窗口 notepad //打开新文本 mstsc //远程连接 阅读全文
posted @ 2008-03-20 09:42 heart-in-sky 阅读(133) 评论(0) 推荐(0) 编辑
  2008年3月19日
摘要: select recdate=case recdate when '1900-01-01' then '' else substring(convert(char(10),recdate,120),1,10) end from table1 阅读全文
posted @ 2008-03-19 16:44 heart-in-sky 阅读(131) 评论(0) 推荐(0) 编辑
  2008年3月16日
摘要: main.aspx: <form runat="server" id="form1"> ..... <asp:Button id="btn1" runat="server"style="display:none" /> </form> child.aspx: window.opener.document.form1.submit(); or window... 阅读全文
posted @ 2008-03-16 17:32 heart-in-sky 阅读(303) 评论(0) 推荐(0) 编辑
  2008年3月15日
摘要: function clearNoNum(obj) { //先把非数字的都替换掉,除了数字和. obj.value = obj.value.replace(/[^\d.]/g,""); //必须保证第一个为数字而不是. obj.value = obj.value.replace(/^\./g,""); //保证只有出现一个.而没有多个. obj.value = obj.va... 阅读全文
posted @ 2008-03-15 18:44 heart-in-sky 阅读(324) 评论(0) 推荐(0) 编辑
  2008年3月5日
摘要: insert into dbo.BW_BasicData_PlantCode (code,Description) select [PlantNo],[PlantDesc] from OPENROWSET('MICROSOFT.JET.OLEDB.4.0','Excel 8.0;IMEX=1;HDR=YES;DATABASE=D:\物料基本数据维护.xls','select * from [... 阅读全文
posted @ 2008-03-05 17:41 heart-in-sky 阅读(171) 评论(0) 推荐(0) 编辑
摘要: string path = Server.MapPath("~\\BasicData\\"+name+".txt"); StreamReader sr = new StreamReader(path, System.Text.Encoding.GetEncoding("gb2312")); String line; if(name=="仓位" || name=="... 阅读全文
posted @ 2008-03-05 17:30 heart-in-sky 阅读(202) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 下一页