摘要: oracle10g上的代码 MERGE INTO TCGGYSGHCP CP USING (SELECT * FROM (SELECT QD.LIFNR, QD.MATNR, MAX(MX.DATAB) DATAB, MAX(MX.DATBI) DATBI, QD.LOEKZ, QD.SESSION 阅读全文
posted @ 2016-12-31 11:58 IT 6796 阅读(944) 评论(0) 推荐(0) 编辑
摘要: 异常详细信息: System.ArgumentException: 在 Range 对象中,Min (37)必须小于或等于 max (-1)。 解决方法:转化字段类型为int 再次出现问题:HH>0 and HH<=35 出来的数据序列为 1,10,11,12,13,14,15,16,17,18,1 阅读全文
posted @ 2016-12-28 19:02 IT 6796 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 应用程序池->管道模式:集成 阅读全文
posted @ 2016-11-28 17:06 IT 6796 阅读(197) 评论(0) 推荐(0) 编辑
摘要: asp.net自定义控件传参的方式有2中:①字段的方式在自定义控件的.ascx.cs中定义一个字段,然后在调用页面的page_load方法里面传入参数。如 在自定义控件中设置字段 public string pageid="";在调用页面的page_load中传入参数cBzbmsx.pageid='... 阅读全文
posted @ 2015-09-08 18:33 IT 6796 阅读(399) 评论(0) 推荐(0) 编辑
摘要: 如果直接部署,会出现如下问题:试图加载格式不正确的程序。 (Exception from HRESULT: 0x8007000B)解决办法1.命令行键入:cscript.exe %SYSTEMDRIVE%\inetpub\adminscripts\adsutil.vbs SET W3SVC/AppP... 阅读全文
posted @ 2015-08-28 08:56 IT 6796 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 最近在学些web前段的知识,看见博客园首页左侧的一个级联菜单,就想写一个demo.呵呵<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title> 阅读全文
posted @ 2013-01-24 10:45 IT 6796 阅读(505) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace SF_Test1{ class Program { static void Main(string[] args) { Console.WriteLine("请输入初始数据:"); string str = Console.ReadLine(); string[] strArray = str.Split(',');//原始数据 阅读全文
posted @ 2012-09-27 13:23 IT 6796 阅读(198) 评论(0) 推荐(0) 编辑