文章分类 -  个人原创地带

我的原创地带...
摘要:1. ORACLE SELECT * FROM TABLE1 WHERE ROWNUM<=N 2. INFORMIX SELECT FIRST N * FROM TABLE1 3. DB2 SELECT * ROW_NUMBER() OVER(ORDER BY COL1 DESC) AS ROWNUM WHERE ROWNUM<=N 或者SELECT COLUMN FROM TABLE FETCH... 阅读全文

posted @ 2007-05-20 18:30 零度海洋 阅读(165) 评论(0) 推荐(0) |

摘要:function Button1_onclick() {alert("button1");alert(event.clientX);}function Button2_onclick() { doClick("Button1",event); }function doClick(linkId, e){ var fireOnThis = do... 阅读全文

posted @ 2007-05-14 20:33 零度海洋 阅读(5525) 评论(2) 推荐(0) |

摘要:function sortMe(oSel){if (oSel==null) return;var ln = oSel.options.length;var arr = new Array(); // 这是关键部分var tempvalue=oSel.options[oSel.selectedIndex].value; // 将select中的所有option的value值将保存在Array中fo... 阅读全文

posted @ 2007-05-11 11:10 零度海洋 阅读(515) 评论(0) 推荐(0) |

摘要:using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.We... 阅读全文

posted @ 2007-04-02 23:26 零度海洋 阅读(696) 评论(0) 推荐(0) |

摘要:using System.Data.SqlClient;using System.Xml;//-----------------------------------------------//作者: ∮明天去要饭 QQ:305725744//Blog: http://blog.csdn.net/kgdiwss//-------------------------------------------... 阅读全文

posted @ 2007-02-03 18:32 零度海洋 阅读(184) 评论(0) 推荐(0) |

摘要:using System;using System.Collections.Generic;using System.Reflection;using System.Text;using System.CodeDom;using System.CodeDom.Compiler; namespace csrepl{ class Program { //調用方式,最後輸出的結... 阅读全文

posted @ 2007-01-31 16:16 零度海洋 阅读(273) 评论(0) 推荐(0) |

摘要:function Chinese(num) { if(!/^\d*(\.\d*)?$/.test(num)) { alert("請輸入數字!"); return false; } var AA=new Array("零","一","二","三","四","伍","六"... 阅读全文

posted @ 2006-12-05 11:39 零度海洋 阅读(235) 评论(0) 推荐(0) |

摘要:使用.Net编写Windows程序,对于窗体控制常见项目 1、让窗体在启动时在指定位置出现 form1.StartPosition Manual CenterScreen WindowsDefaultLocation (default) WindowsDefaultBounds CenterParent 只有在窗体启动前设置才有效。 2、设置窗体的图标 form1.Icon 3、设置该窗体成为多个... 阅读全文

posted @ 2006-09-19 13:06 零度海洋 阅读(1490) 评论(0) 推荐(0) |

摘要:Function ExecUrl(jobno,datestr) '改變mysql數據庫,使與本系統數據庫同步操作set xmlhttp = CreateObject("Microsoft.XMLHTTP") xmlhttp.open "post","http://192.168.2.7:8080/web/usenddate.do",false stra="jobno="&jobno&"&send... 阅读全文

posted @ 2006-09-12 16:13 零度海洋 阅读(302) 评论(1) 推荐(0) |

摘要:最近在網上看到關於多表的查詢的,返回值的問題using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;... 阅读全文

posted @ 2006-07-21 12:30 零度海洋 阅读(2126) 评论(3) 推荐(0) |

博客园  ©  2004-2026
浙公网安备 33010602011771号 浙ICP备2021040463号-3