Goodspeed

导航

随笔分类 -  Web技术

上一页 1 2 3 4 5 下一页

C# 获取数据库中某个某个表的创建脚本[原创]
摘要:SQLDMO(SQL Distributed Management Objects,SQL分布式管理对象)封装了Microsoft SQL Server数据库中的对象。SQLDMO是Microsoft SQL Server中企业管理器所使用的应用程序接口。 SQLDMO由Microsoft SQL Server自带的SQLDMO.dll提供,由于SQLDMO.dll是一个COM对象,所以... 阅读全文

posted @ 2005-08-05 18:27 Goodspeed 阅读(2493) 评论(4) 推荐(0)

Class reflection sample
摘要:Reflection.aspx Class reflection sample Class reflection sample Reflection.aspx.cs using System;using System.Data;using System.Configura... 阅读全文

posted @ 2005-07-21 14:18 Goodspeed 阅读(1894) 评论(0) 推荐(0)

在HttpHandlers (ASHX files)中使用Session
摘要:当你希望从ashx或HttpHandler里访问你的Session时,你必须实现IReadOnlySessionState接口.代码: using System;using System.Web;using System.Web.SessionState;public class DownloadHandler : IHttpHandler, IReadOnlySessionState{ p... 阅读全文

posted @ 2005-07-19 16:57 Goodspeed 阅读(1937) 评论(1) 推荐(0)

《ASP.net组件设计》PowerORM的完整代码
摘要:using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.W... 阅读全文

posted @ 2005-07-12 09:50 Goodspeed 阅读(1529) 评论(0) 推荐(0)

EventCalendar控件源码和ASP.NET 2.0 Beta 2 Starter Kits中可能遇到的问题
摘要:在ASP.NET 2.0 Beta 2 Starter Kits 的Club Site Starter Kit项目中,有一个EventCalendar.dll没有给出源码。下面是作者给出的源码地址http://beta.asp.net/StarterKits/Downloads/EventCalendar.zip如果你正在看Club Site Starter Kit,只用将zip的所有文件解压到项... 阅读全文

posted @ 2005-06-14 22:26 Goodspeed 阅读(2538) 评论(2) 推荐(0)

SQL 注入有常用语句
摘要:是否支持多句查询http://www.xxx.com/xxxnews/shownews.asp?id=51;declare @a int-- 是否支持子查询http://www.xxx.com/xxxnews/shownews.asp?id=51 and (Select count(1) from [sysobjects])>=0 返回用户名http://www.xxx.com/xxxnews/... 阅读全文

posted @ 2005-01-14 15:35 Goodspeed 阅读(2678) 评论(0) 推荐(0)

WebControl示例
摘要:using System;using System.Web.UI;using System.Text;namespace Goodspeed.Web{ /**//// /// Summary description for WebTimer /// public class WebTimer:Control, IPostBackEventHandler { ... 阅读全文

posted @ 2004-12-20 16:31 Goodspeed 阅读(1164) 评论(0) 推荐(0)

MSN photo upload tool
摘要:图片选择与上传 图片编辑 相关代码(见回复) 阅读全文

posted @ 2004-12-03 16:44 Goodspeed 阅读(10555) 评论(36) 推荐(0)

贪食蛇JS源码
摘要:Snake 参数 Sx: Sy: Fx: Fy: Gox: Goy: Sec: Time: 阅读全文

posted @ 2004-11-23 16:24 Goodspeed 阅读(1359) 评论(0) 推荐(0)

按不同国家语言进行字符串排序
摘要:void Page_Load(object sender, EventArgs e) { //测试数据 string[] myArr = new string[6]; myArr[0] = "地域"; myArr[1] = "地図"; myArr[2] = "路線"; myArr[3] = "道路交通"; ... 阅读全文

posted @ 2004-11-11 14:39 Goodspeed 阅读(1610) 评论(0) 推荐(0)

匿名方法代码示例
摘要:string text = "Yeah, you clicked the button!";EventHandler handler =delegate(object dlgSender, EventArgs dlgE){ Response.Write(text);};this.Button1.Click += handler; 阅读全文

posted @ 2004-10-26 09:35 Goodspeed 阅读(1140) 评论(0) 推荐(0)

Javascript中的arguments 对象
摘要:function fn(a,b,c){ var s = ""; var i; s += "函数传入参数个数:" + fn.arguments.length + "\n"; for (i=0;i<fn.arguments.length;i++) { s += "函数传入参数" + i +":" + fn.arguments[i] + "\n"; }... 阅读全文

posted @ 2004-10-25 14:01 Goodspeed 阅读(2883) 评论(0) 推荐(0)

[ASP] Request.ServerVariables
摘要:Server Variable Value 阅读全文

posted @ 2004-09-29 13:52 Goodspeed 阅读(3061) 评论(1) 推荐(0)

ASP.net的客户端脚本
摘要:// 在标签之前 this.RegisterStartupScript("2", ""); //在标签之后 this.RegisterClientScriptBlock("1", ""); //创建客户端数组在之前 RegisterArrayDeclaration("FavoriteFolks", "'Goo... 阅读全文

posted @ 2004-09-21 12:27 Goodspeed 阅读(1595) 评论(1) 推荐(0)

RecodeSet排序
摘要:strSQL = "SELECT EmployeeID,LastName,FirstName FROM Employees;"set rs=server.CreateObject("adodb.recordset")rs.CursorLocation = 3 rs.Open strSQL,conn,0,1 rs.Sort = " FirstName" 阅读全文

posted @ 2004-09-14 12:58 Goodspeed 阅读(1159) 评论(0) 推荐(0)

ASP和ASP.net中多结果集的返回
摘要:ASP Test " For Each Field In rs.Fields strResponse = strResponse & "" & Field.Name & "" Next strResponse = strResponse & "" '输出表体 Do Until rs.EOF strResponse = str... 阅读全文

posted @ 2004-09-13 16:49 Goodspeed 阅读(1300) 评论(0) 推荐(0)

Asp.net 2.0 Treeview 无限级无刷新示例
摘要:Untitled Page 阅读全文

posted @ 2004-08-23 12:17 Goodspeed 阅读(2586) 评论(0) 推荐(0)

asp.net 2.0 中无刷新机制
摘要:Untitled Page 阅读全文

posted @ 2004-08-23 09:27 Goodspeed 阅读(1591) 评论(0) 推荐(0)

正则表达式测试网页
摘要:正则表达式测试 正则表达式 匹配字符串 阅读全文

posted @ 2004-08-19 11:12 Goodspeed 阅读(1149) 评论(1) 推荐(0)

Cool SMIL
摘要:Cool http://www.cnblogs.com http://www.cnblogs.com/goodspeed 我自己的Blog 阅读全文

posted @ 2004-08-16 12:04 Goodspeed 阅读(2171) 评论(2) 推荐(0)

上一页 1 2 3 4 5 下一页