Tina's blog
开心过好每一天! Come on !
上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: --> Web.config详解 所有.NET配置文件所必须的根元素 实际ASP.NET配置设置的根元素 标记。 "On" 始终显示自定义(友好的)信息。如果没有提供defaultRedirect属性,则用户将看到一般的错误信息. "Off" 始终显示详细的 ASP.NET 错误信息... 阅读全文
posted @ 2008-08-12 15:23 Tinachang 阅读(248) 评论(0) 推荐(0) 编辑
摘要: public bool ValidationInServer(ref string errorInfo,string txt, string type) { if (type == "0" || type == "1" || type == "3") {//email address formart validation ... 阅读全文
posted @ 2008-08-07 16:55 Tinachang 阅读(140) 评论(1) 推荐(0) 编辑
摘要: update AppLocation set SerializedString=(select cast(MemberID as varchar(40))+'|'+isnull(Address,'')+'|'+isnull(MapUrl,'')+'|'+isnull(Phone,'')+'|'+ isnull(FromTime,'')+'|'+isnull(ToTime,'')+'... 阅读全文
posted @ 2008-08-06 18:06 Tinachang 阅读(471) 评论(0) 推荐(0) 编辑
摘要: 1.function ShowLargeImg() { var url=hidImgUrl.value; var imgWin=window.open('','img','width=50,height=50,scrollbars=yes,resizable=yes,location=no,status=no')//打开一个空白窗口,并初始化大小 ... 阅读全文
posted @ 2008-08-05 15:59 Tinachang 阅读(396) 评论(0) 推荐(0) 编辑
摘要: Tab功能 tab1 ... 阅读全文
posted @ 2008-08-05 15:31 Tinachang 阅读(893) 评论(0) 推荐(0) 编辑
摘要: 前台。。。 后台(.cs) :this.tblTime.Style.Add("display","");注意这里只能这样写,而不能用this.tblTime.visible=true; 阅读全文
posted @ 2008-07-30 18:35 Tinachang 阅读(164) 评论(0) 推荐(0) 编辑
摘要: //注册客户端id public void RegisterClientId(params Control[] ctrls) { foreach (Control ctrl in ctrls) { string jscmd = "var {0} = document.getElementById(\"{1}\");\n"; ... 阅读全文
posted @ 2008-07-30 15:29 Tinachang 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 电脑速度慢的原因及解决方法 电脑速度慢 对于关机慢的解释: 1.开始 运行msconfig回车,启动,勾选杀毒软件,防火墙,输入法ctfmon三个其他的勾都去掉,确定,关闭,重起电脑看看 2. 下载关机加速补丁,然后直接导入注册表在XP中关机时,系统会发送消息到运行程序和远程服务器,告诉它们系统要关闭,并等待接到回应后系统才开始关机。加 快关机速度,可以先设置自动结束任务,首先找到HK... 阅读全文
posted @ 2008-07-30 14:38 Tinachang 阅读(1102) 评论(1) 推荐(0) 编辑
摘要: 1.使用window.open方法打开窗口--父窗口 &status=&appID=','','height=400,width=650,top=200,left=300')"details 2.使用Response.write()关闭并刷新父窗口 首先如果你父页面中,提交过,有本页提交,即IsPostBack = ture .那么子窗体中用javascript 的window.... 阅读全文
posted @ 2008-07-25 10:47 Tinachang 阅读(342) 评论(0) 推荐(0) 编辑
摘要: select * into destTbl from srcTbl insert into destTbl(fld1, fld2) select fld1, 5 from srcTbl 以上两句都是将 srcTbl 的数据插入到 destTbl,但两句又有区别的。 第一句(select into from)要求目标表(destTbl)不存在,因为在插入时会自动创建。 第二句(insert into... 阅读全文
posted @ 2008-07-22 17:40 Tinachang 阅读(988) 评论(2) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页