摘要:
这次测试的数据库记录总数为100万,id字段是主键。测试是在SQL Server 2005下进行的(主要row_number函数是2005新增的)。分页方法分别是MinMax法,两次Top法,Row_Number法1,Row_Number法2。示例语句如下:-- MinMax法Select Top 10 * From T1000000 Where id<(Select Min(id) Fro... 阅读全文
摘要:
jqURLa swell jQuery pluginDownload jquery.jqURL.js (6K)Description:jqURL is a plugin for the jQuery javascript library. It allows you to do some stuff to and with urls and windows/iframes that can dec... 阅读全文
摘要:
<!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><meta htt... 阅读全文
摘要:
js中SetInterval与setTimeout用法JS里设定延时:使用SetInterval和设定延时函数setTimeout 很类似。setTimeout 运用在延迟一段时间,再进行某项操作。 setTimeout("function",time) 设置一个超时对象setInterval("function",time) 设置一个超时对象SetInterval为自动重复,setTimeout... 阅读全文
摘要:
setTimeout 定义和用法: setTimeout() 方法用于在指定的毫秒数后调用函数或计算表达式。 语法: setTimeout(code,millisec) 参数: code (必需):要调用的函数后要执行的 JavaScript 代码串。 millisec(必需):在执行代码前需等待的毫秒数。 提示: setTimeout() 只执行 code 一次。如果要多次调用... 阅读全文
摘要:
<html> <head id="Head1" runat="server"> <title>Untitled Page</title> <script language=javascript> function setImagePreview( fileUrl ) { var objDivFilter = document.g... 阅读全文
摘要:
首先是生成xml文件,生成xml文件前去网上DOWNload一个最新中国省市行政数据库public void createxml(string filename) { XmlTextWriter mywrite = new XmlTextWriter(filename, Encoding.UTF8); try { mywrite.Formatting = Formatting.Indented; ... 阅读全文
摘要:
RequiredFieldValidator验证控件失效时给该控件ValidationGroup赋值即 asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="productname" ErrorMessage="*必填" Va... 阅读全文
摘要:
aspx文件 ... 阅读全文
摘要:
public bool wbrowserinfo(int browsehid, string browsetitle, string browsepageurl, string browsetime, int userid) { sql = "select * from house_browselslist where userid=" + userid +... 阅读全文