摘要: 定义一个数组,元素是长度小于100字符的字串 TYPE str_array IS TABLE OF varchar(100); 定义一个数组,元素是长度小于100字符的字串 type arrays is table of varchar2(200); declare str_array array; begin str_array(1)='A0001'; str_array.extends(1);... 阅读全文
posted @ 2009-03-12 19:01 Jinny 阅读(753) 评论(0) 推荐(0) 编辑
摘要: Regex rx = new Regex(@"(\<IMG )[^\u4e00-\u9fa5]*(src="")[\w_\-]+\.\w{3,}""[^\u4e00-\u9fa5]*\>", RegexOptions.IgnoreCase | RegexOptions.Multiline); Regex rx1 = new Regex(@"( src="")[\w_\-]+\.\w{3... 阅读全文
posted @ 2009-03-09 20:20 Jinny 阅读(211) 评论(0) 推荐(0) 编辑
摘要: [WebMethod]public int ExecuteInsert(string tableName, string[] fields, string[] fieldValues){string sql = null;try{con.Open();sql = getInsertString(tableName, fields);SqlCommand command = new SqlComma... 阅读全文
posted @ 2008-10-16 12:13 Jinny 阅读(196) 评论(0) 推荐(0) 编辑
摘要: UR4YH-30LFE-FA3FY-4G8FLYLT64-MKFFG-8A1DY-4M8ZK LCT4T-24GFE-A816V-4MTQQ 阅读全文
posted @ 2008-09-23 15:01 Jinny 阅读(225) 评论(0) 推荐(0) 编辑
摘要: exec sp_msforeachtable @command1="delete ?" ,@whereand="and name like 'ts%'"use hotop100 declare @tname varchar(50) declare a_cursor cursor for select name from sysobjects where type='u' open a_cursor... 阅读全文
posted @ 2008-08-21 21:46 Jinny 阅读(687) 评论(0) 推荐(0) 编辑
摘要: void update(string dllName) { string fileName = currentAppPath + "\\" + dllName; string url = serverPath + "/" + dllName; try { WebRequest myWebRequest = WebRequest.Create(url); WebResponse myWebRespo... 阅读全文
posted @ 2008-08-04 14:16 Jinny 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 在CSS中有一个Alpha滤镜,这个滤镜可以设置目标元素的透明度。还可以通过指定坐标,从而实现各种不同范围的透明度。 具体语法如下: {filter: alpha(opacity=#opacity,finishopacity=#finishopacity,style=#style,startx=#startx,starty=#starty,finishx=#finishx,finishy=#fin... 阅读全文
posted @ 2008-06-21 17:11 Jinny 阅读(517) 评论(0) 推荐(0) 编辑
摘要: <script language="javascript">function Getry(){ var ry=new Array; ry=showModalDialog('Ryfz.aspx?str='+document.all("txtjb").value,null,"help=no;dialogWidth:300px;dialogHeight:560px;scroll:no"); ... 阅读全文
posted @ 2008-05-14 22:16 Jinny 阅读(327) 评论(0) 推荐(0) 编辑
摘要: //打开视窗的函数function openWin(url,name) { var left=(screen.width-800)/2; var top=(screen.height-600)/2; var Win = window.open(url,name,'top='+top+',left='+left+',width=800,height=540,scrollbars=no,resiz... 阅读全文
posted @ 2008-05-14 22:11 Jinny 阅读(573) 评论(0) 推荐(0) 编辑
摘要: function GetKeyAscii(evt,type){/*****************************************************************************************************************************************作者:chen*日期:20070521*函数功能:筛选输入字元... 阅读全文
posted @ 2008-05-14 22:10 Jinny 阅读(248) 评论(0) 推荐(0) 编辑