上一页 1 ··· 19 20 21 22 23
摘要: [代码]把以前用c#写的改为了js的.贪吃蛇代码. 阅读全文
posted @ 2009-10-20 14:42 琴鸟 阅读(303) 评论(1) 推荐(0) 编辑
摘要: 上下文:一般系统都会有不同的用户角色,比如系统管理员admin,超级用户manager,一般用户worker早先直接使用session保留一个值,如session["userType"].来判断用户的权限。特点:方便,但是毕竟不同角色,属性数量和类型是不相同的,比如一个中介管理系统中:admin:channelID;所属中介机构loginID;登陆idrealName;真实姓名manager和wo... 阅读全文
posted @ 2009-09-10 06:39 琴鸟 阅读(1685) 评论(2) 推荐(1) 编辑
摘要: sql2005/*已选车型禁止删除*/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOCREATE TRIGGER ondelete ON carseries AFTER DELETEAS BEGINif exists(select sc_series from sellcar,deleted where deleted.cs_id=sellcar.sc... 阅读全文
posted @ 2009-08-10 10:11 琴鸟 阅读(153) 评论(0) 推荐(0) 编辑
摘要: http://social.microsoft.com/Forums/zh-CN/2212/thread/a38dd6bf-1ab3-4a39-8066-c96432b0580chttp://www.xinyuonline.net/blog/?action=show&id=64http://www.cnblogs.com/rudy/archive/2009/05/21/1486672.ht... 阅读全文
posted @ 2009-06-06 11:26 琴鸟 阅读(221) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections;using System.Configuration;using System.Data;using System.Linq;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.HtmlControls;usi... 阅读全文
posted @ 2009-06-04 22:46 琴鸟 阅读(1252) 评论(5) 推荐(0) 编辑
摘要: XMLHttpRequest对象XMLHttpRequest提供客户端同http服务器通讯的协议Example下面的代码是在JScript中创建一个XMLHTTP对象并从服务器请求一个XML文档。服务器返回XML文档并显示。var xmlHttpReq = new ActiveXObject("MSXML2.XMLHTTP.3.0");xmlHttpReq.open("GET", "http://... 阅读全文
posted @ 2009-05-20 21:45 琴鸟 阅读(988) 评论(5) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace alltest{ class Program { static void Main(string[] args) { object ob = 5; int obint = Convert.ToInt32(ob); i... 阅读全文
posted @ 2009-05-13 09:40 琴鸟 阅读(187) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Web;using System.Web.UI;using System.Web.UI.WebControls.Adapters;namespace LBControl{ public class LBPager : Control, IPost... 阅读全文
posted @ 2009-04-29 17:11 琴鸟 阅读(233) 评论(1) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Web;using System.Web.UI;using System.Web.UI.WebControls.Adapters;namespace LBControl{ public class LBTextBox:System.Web.UI.... 阅读全文
posted @ 2009-04-29 17:03 琴鸟 阅读(830) 评论(2) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23