2007年11月23日
摘要: ASP.NET拾萃——服务器端控件篇(一) 技巧一:在客户端的JavaScript脚本中获取服务器端控件的值 以前,当我们需要在脚本里访问页面内一个对象的时候,一般都是通过对象的id或name。就像这样—— // ... function getText() { return document.form1.Text1.value; // Text1就是对象的id } //... 阅读全文
posted @ 2007-11-23 01:49 Edison Zhu 阅读(1370) 评论(0) 推荐(0) 编辑
摘要: Loads a data file into a database table or view in a user-specified format. Syntax BULK INSERT [ database_name ... 阅读全文
posted @ 2007-11-23 00:30 Edison Zhu 阅读(366) 评论(0) 推荐(0) 编辑
摘要: Temporary Tables You can create local and global temporary tables. Local temporary tables are visible only in the current session, and global temporary tables are visible to all sessions. Temporary t... 阅读全文
posted @ 2007-11-23 00:28 Edison Zhu 阅读(187) 评论(0) 推荐(0) 编辑