2005年5月16日

摘要: 说明:复制表(只复制结构,源表名:a 新表名:b) SQL: select * into b from a where 11 说明:拷贝表(拷贝数据,源表名:a 目标表名:b) SQL: insert into b(a, b, c) select d,e,f from b; 说明:显示文章、提交人和最后回复时间 SQL: select a.title,a.username,b.adddate fr... 阅读全文
posted @ 2005-05-16 13:53 就让我用一生等待 阅读(311) 评论(0) 推荐(0)
 
摘要: 1.09 及 1.10 通用公式 3 同类型的神符 (低于 10 级) = 1 高一级别的神符 3 El Runes -> 1 Eld Rune3 Eld Runes -> 1 Tir Rune3 Tir Runes -> 1 Nef Rune3 Nef Runes -> 1 Eth Rune3 Eth Runes -> 1 Ith Rune3 Ith Runes -> 1 Tal Rune3 ... 阅读全文
posted @ 2005-05-16 12:50 就让我用一生等待 阅读(1370) 评论(0) 推荐(0)
 
摘要: vb:Private Sub ExportDataGrid(ByVal FileType As String, ByVal FileName As String) Response.Charset = "GB2312" Response.ContentEncoding = System.Text.Encoding.GetEncoding("GB2312") ... 阅读全文
posted @ 2005-05-16 10:41 就让我用一生等待 阅读(315) 评论(0) 推荐(0)
 
摘要: 1、web.config文件后面加入这一句: 示例: 2、在*.aspx文件头的Page中加入validateRequest="false",示例如下: 阅读全文
posted @ 2005-05-16 10:35 就让我用一生等待 阅读(1275) 评论(0) 推荐(0)
 
摘要: You create a custom DataTableStyle that contains column styles for each column you want to display. You add the column styles in the order you want them to appear. Here are the steps to add an string ... 阅读全文
posted @ 2005-05-16 10:33 就让我用一生等待 阅读(299) 评论(0) 推荐(0)
 
摘要: How To Retrieve Schema Information by Using GetOleDbSchemaTable and Visual C# .NETuse OleDbConnection's GetOleDbSchemaTable method, see http://support.microsoft.com/kb/309681/EN-US/ 阅读全文
posted @ 2005-05-16 10:30 就让我用一生等待 阅读(387) 评论(0) 推荐(0)
 
摘要: using System.Threading;static void Main() { Mutex m_Ctmt = new Mutex(true, "MutexInstance"); if (m_Ctmt.WaitOne(0,false)) { Application.Run(new CtServerAp_Main()); } else { Messag... 阅读全文
posted @ 2005-05-16 10:13 就让我用一生等待 阅读(717) 评论(3) 推荐(0)