随笔分类 -  我的.NET

上一页 1 2 3 下一页
努力学习
存储过程中的case的应用
摘要:select case when Ad.IsClicked=0 then 'impression' else 'click ' end as 'IsClicked', count(*) from dbo.T_IMeetADHit Ad where Ad.ADName='hilton tile' and Ad.CreateDateTime>='2009-4-1 0:0:0' and Ad.C... 阅读全文
posted @ 2009-07-09 14:00 prayforsmile 阅读(426) 评论(0) 推荐(0) 编辑
SQL中的函数
摘要:sql中函数的使用例子,以及函数在sp中的调用 阅读全文
posted @ 2009-06-22 16:55 prayforsmile 阅读(218) 评论(0) 推荐(0) 编辑
记录一个方法
摘要:protected override void OnPreRenderComplete(EventArgs e) { ScriptManager.RegisterStartupScript(UpdatePanel1, typeof(UpdatePanel), "returntop", "setTimeout(\"window.location.hash='top1'\",500);", true)... 阅读全文
posted @ 2009-05-08 11:24 prayforsmile 阅读(122) 评论(0) 推荐(0) 编辑
linq多表查询2
摘要:linq 复杂一点的查询 阅读全文
posted @ 2009-01-13 16:54 prayforsmile 阅读(1960) 评论(0) 推荐(0) 编辑
linq多表查询
摘要:var l = from al in db.T_DmcDataAirline join apt in db.T_DmcDataAirportTerminal on al.AirportTerminaID equals apt.AirportTerminaID where apt.AirportID =... 阅读全文
posted @ 2009-01-04 13:35 prayforsmile 阅读(584) 评论(0) 推荐(0) 编辑
javascript常用代码
摘要:OnClientClick="return confirm('are you sure you want to delete this file?');" window.alert('') //弹出对话框 window.close() //关闭窗口 window.confirm('') //确认对话框 window.location.href='' //页面转向,貌似可以通过top.l... 阅读全文
posted @ 2008-12-02 16:34 prayforsmile 阅读(160) 评论(0) 推荐(0) 编辑
加密与解密
摘要:DESCryptoServiceProvider des = new DESCryptoServiceProvider(); byte[] inputByteArray = System.Text.Encoding.Default.GetBytes(pToEncrypt); des.Key = System.Text.ASCIIEncoding.ASCII.GetBytes(sKey); des.IV = System.Text.ASCIIEncoding.ASCII.GetBytes(sKey); MemoryStream ms = new MemoryStream(); 阅读全文
posted @ 2008-10-30 11:54 prayforsmile 阅读(288) 评论(0) 推荐(0) 编辑
自动发邮件的一段代码
摘要:public static void SendMailAsSMTP(string strMailFromAddr, string strMailFromName, string strTo, string strSubject, string strBody) 阅读全文
posted @ 2008-10-30 11:33 prayforsmile 阅读(341) 评论(0) 推荐(0) 编辑
类别动态绑定到TreeView控件
摘要:一个产品名下有几个子类产品名,如何绑定到TreeView中。 阅读全文
posted @ 2008-07-31 19:19 prayforsmile 阅读(399) 评论(0) 推荐(0) 编辑
面试——IQ题
摘要:1.提供一个3升和一个5升的水桶,并提供无限多的水,你怎样用它们准确地量出四升和七升的水来呢?? 答:装满3升,倒进5升,再装满3升,倒进5升,倒掉5升,把3升剩余倒进去,再装满3升,倒进5升 装满5升,倒进3升,倒掉3升,把5升里剩余倒进3升,再装满5升 阅读全文
posted @ 2008-06-25 16:49 prayforsmile 阅读(2444) 评论(3) 推荐(0) 编辑
面试——面向对象题
摘要:一:抽象类与接口的区别(用英文描述) Interface is open to the public, there can not have the private methods and variables.It is used to let others use, but the abstract class can have private methods or private variables.In addition, the realization of the interface must be realized in the interface definition of all methods, and the realization of the abstract 阅读全文
posted @ 2008-06-25 16:38 prayforsmile 阅读(1052) 评论(0) 推荐(0) 编辑
面试——数据结构二
摘要:数据结构二 阅读全文
posted @ 2008-06-25 16:34 prayforsmile 阅读(566) 评论(0) 推荐(0) 编辑
面试——数据库题
摘要:游标的使用: 用sql server游标语句打印报表 DECLARE authors_cursor CURSOR FOR SELECT au_id, au_fname, au_lname 阅读全文
posted @ 2008-06-25 16:25 prayforsmile 阅读(455) 评论(0) 推荐(0) 编辑
面试——常考的数据结构题
摘要:为了能进微软江西的暑假实训班,猛补了一下数据结构的知识,现在总结一下常考的数据结构的知识吧。 知识点:1链表 2二叉树 3排序 4查找 阅读全文
posted @ 2008-06-25 16:20 prayforsmile 阅读(2316) 评论(0) 推荐(0) 编辑
asp.net forums 的前台显示
摘要:在SkinedForumWebControl里面读取,添加了它的子类里面指定的文件,并且调用子类实现的抽象方法,来进行数据绑定加上事件等处理。 阅读全文
posted @ 2008-04-01 19:49 prayforsmile 阅读(179) 评论(0) 推荐(0) 编辑
asp.net forums 缓存
摘要:业务逻辑层,此项目用的是Component模式(微软推荐)开发。这个项目(层)里面的比较复杂,我从缓存讲起 阅读全文
posted @ 2008-03-29 21:30 prayforsmile 阅读(201) 评论(0) 推荐(0) 编辑
PetShop4.0--转载
摘要:以下文章转载于http://www.cnblogs.com/dragonlhf/archive/2006/07/30/463110.html 阅读全文
posted @ 2008-03-12 16:19 prayforsmile 阅读(252) 评论(0) 推荐(0) 编辑
开始研究PetShop
摘要:从今天开始研究Petshop的源码。。。。坚持下去,一定会有机会接触到更多有意思的代码的。哈哈哈,大笑三声。。。 阅读全文
posted @ 2008-03-10 22:48 prayforsmile 阅读(119) 评论(0) 推荐(0) 编辑
经典SQL语句--转载
摘要:1、列出数据库里所有的表名 select name from sysobjects where type='U' 阅读全文
posted @ 2008-03-10 22:10 prayforsmile 阅读(170) 评论(0) 推荐(0) 编辑
完成OA系统
摘要: 经过近两个月的努力,OA系统终于接近尾声,现在想想这个OA系统,它再也没有开始以为的那种神秘了 阅读全文
posted @ 2008-03-08 21:48 prayforsmile 阅读(863) 评论(20) 推荐(0) 编辑

上一页 1 2 3 下一页