上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 19 下一页
摘要: 1,我在form之外添加了一个button,结果提示错误:“Button”的控件“PreButton”必须放在具有 runat=server 的窗体标记内。解决办法: 在页面中重写Page基类的VerifyRenderingInServerForm方法 public override void VerifyRenderingInServerForm(Control control) { // Confirms that an HtmlForm control is rendered for }来源:http://www.cnblogs.com/littleangel7/articles... 阅读全文
posted @ 2012-12-14 15:55 金河 阅读(318) 评论(0) 推荐(1) 编辑
摘要: 1,ime-mode共有4个值,如下,前两个可以输入汉字,后两个不能输入汉字。 <input type="text" name="textfield" style="ime-mode:auto " /> <input type="text" name="textfield" style="ime-mode:active " /> <input type="text" name="textfield" sty 阅读全文
posted @ 2012-12-13 15:33 金河 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 1,写到类中,用到DataContractJsonSerializer,需要引用using System.Runtime.Serialization; 使用例子: 输出结果是:恭喜您,发布成功。 obj.Msg的值是使用unicode编码表示的汉字。 阅读全文
posted @ 2012-12-04 16:58 金河 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 下面是转载:http://www.cnblogs.com/duohahawuwu/archive/2011/04/20/2021975.html最近发现抓取网页数据的工作越来越多了,抓取技术,正则表达式,各种麻烦,这次又遇到了cookie的问题。首先痛恨一下那些靠cookie来变换网页内容的网站,嘿嘿在网上找了一些资料,最后整理出来了结论说结论之前先说一下cookie的层次关系,在.net中cookie的大小关系如下CookieContainer--CookieCollection--Cookie ,其中我们使用的HttpWebRequest使用的正式第一级别也就是CookieContaine 阅读全文
posted @ 2012-12-03 11:42 金河 阅读(852) 评论(0) 推荐(0) 编辑
摘要: 1, 2, 总结: 阅读全文
posted @ 2012-11-23 11:21 金河 阅读(279) 评论(0) 推荐(0) 编辑
摘要: 1,提取刷新时间 #region 根据刷新时间判断是否发布或者刷新成功 //匹配源: <p>刷新时间:2012-11-22 16:30</p> //需要获取: 2012-11-22 16:30 private bool TestRefreshTime(string input) { bool flag = false; //正则 \d+至少一个数字,\-转义连接符,\s空格,()分组 Regex regex = new Regex(@"刷新时间:... 阅读全文
posted @ 2012-11-23 10:49 金河 阅读(508) 评论(0) 推荐(0) 编辑
摘要: 下面是分页存储过程: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) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 19 下一页