08 2005 档案
摘要:摘要: usingSystem;usingSystem.Reflection;usingSystem.Data;usingSystem.Configuration;usingHZAllview.Console.Utility;namespaceHZAllview.Console.Data.Common{//////数据库操作的一些常用函数。///writtenbytmc///publicabstr...
阅读全文
摘要:#include #include #define N 10 typedef struct node{char name[20];struct node *llink,*rlink;}stud; stud * creat(int n){stud *p,*h,*s;int i;if((h=(stud *)malloc(sizeof(stud)))==NULL){printf("不能分配内存空间!")...
阅读全文
摘要:下面的代码只是实现了屏蔽鼠标右键、Ctrl+n、shift+F10、F5刷新、退格键。function KeyDown(){ //屏蔽鼠标右键、Ctrl+n、shift+F10、F5刷新、退格键//alert("ASCII代码是:"+event.keyCode); if ((window.event.altKey)&& ((window.event.keyCode==37)|| /...
阅读全文
摘要:1,调用没有参数的存储过程2,一个输入的参数的存储过程3,一个输入参数和一个输出的参数4,一个输入参数,一个输出参数,和一个返回值 如何在ASP中调用SQL存储过程www.lucky365.net 2002-2-7 吉祥365 ASP调用存储过程的技巧 1、最简单的如下 Dim objConn Set objConn = Server.CreateObject(...
阅读全文