摘要: 下面是分页存储过程:create proc [dbo].[proc_value_page]@pageIndex int,@pageSize int,@pageCount int outputasdeclare @totalRecord intselect @totalRecord=count(*) from dbo.spt_valuesset @pageCount=ceiling(@totalRecord*1.0/@pageSize)select * from(select row_number() over(order by number asc) as num,* from dbo.sp. 阅读全文
posted @ 2012-11-22 21:23 金河 阅读(964) 评论(0) 推荐(0) 编辑
摘要: 下面是从Yes515拷贝过来的代码,还没有详细分析,备用 function addCookie(){ // 加入收藏夹 if (document.all){ window.external.addFavorite(location.href, document.title); }else if (window.sidebar){ window.sidebar.addPanel(document.title, location.href , ""); } } function se... 阅读全文
posted @ 2012-11-22 18:18 金河 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 昨天晚上看《大话设计模式》重构部分,今天在写一个私有方法时,感觉一直在粘贴复制,很无聊,后来我就想办法重构,重构了3次,终于得到了想要的代码,很简洁。(1)最初时公司有关58同城的代码是下面这样的:最初代码 1 #region 填写房屋设施 2 /// <summary> 3 /// 填写房屋设施 4 /// </summary> 5 /// <param name="httpclient"></param> 6 /// <param name="qunfainfo"></param> 阅读全文
posted @ 2012-11-22 14:37 金河 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 1,添加新项,选择web用户控件,命名为Login.ascx,然后在设计视图中添加几个控件,然后添加table,再添加后台代码,最后添加到其他aspx页面。 (1)下面是html源码: <%@ Control Language="C#" AutoEventWireup="true" CodeBehi 阅读全文
posted @ 2012-11-22 10:42 金河 阅读(281) 评论(0) 推荐(0) 编辑