摘要: jQuery是一个轻量级的JS框架,能帮助我们快速的开发JS应用,并在一定程度上改变了我们写JavaScript代码的习惯。jQuery AJAX 请求请求描述$(selector).load(url,data,callback)把远程数据加载到被选的元素中$.ajax(options)把远程数据加载到 XMLHttpRequest 对象中$.get(url,data,callback,type)使用 HTTP GET 来加载远程数据$.post(url,data,callback,type)使用 HTTP POST 来加载远程数据$.getJSON(url,data,callback)使用 阅读全文
posted @ 2012-11-06 23:46 诸葛风流 阅读(9850) 评论(3) 推荐(3) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Data.OleDb;using System.Data.SqlClient;using Excel = Microsoft.Office.Interop.Excel;namespace ExcelOutputInput{ class Program { static void Main(string[] args) { ... 阅读全文
posted @ 2012-11-06 17:07 诸葛风流 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 不多说直接上码declare @name sysname declare csr1 cursor for select TABLE_NAME from INFORMATION_SCHEMA.TABLES open csr1 FETCH NEXT FROM csr1 INTO @name while (@@FETCH_STATUS=0) BEGIN SET @name='nw22104.' + @name print 'ALTER SCHEMA dbo ' +' TRANSFER ' + @name fetch next from csr1 int 阅读全文
posted @ 2012-11-06 17:04 诸葛风流 阅读(365) 评论(0) 推荐(0) 编辑