paul_cheung

导航

2014年4月9日 #

c# & Fizzler to crawl web page in a certain website domain

摘要: 使用fizzler[HtmlAgilityPackExtension]和c#进行网页数据提取;fizzler是HtmlAgilityPack的一个扩展,支持jQuery Selector;提取数据一般都是有规律url拼凑,然后挨个儿发request得到response进行解析:1.假如一个websi... 阅读全文

posted @ 2014-04-09 20:14 paul_cheung 阅读(844) 评论(0) 推荐(0) 编辑

2014年4月8日 #

html a tag's href javascript issue

摘要: a标签的href中写js中遇到的问题(ie中有问题,chrome没问题)//假如没有void(0)阻止执行,在ie中会出现本页面跳转,页面内容为[object Object]原因未知;望大神给出简单的解释! 阅读全文

posted @ 2014-04-08 18:07 paul_cheung 阅读(119) 评论(0) 推荐(0) 编辑

jquery selector checkbox

摘要: $("#competencyList input:checkbox").on("click", function () { var checkedCompetency = $("#competencyList input:checked") $.each(checkedCompetency, function (index, value) { alert(checkedCompetency[index]... 阅读全文

posted @ 2014-04-08 18:01 paul_cheung 阅读(152) 评论(0) 推荐(0) 编辑

jquery remove/add css

摘要: js控制按钮的enable和disable,按钮文字的改变 阅读全文

posted @ 2014-04-08 18:00 paul_cheung 阅读(358) 评论(0) 推荐(0) 编辑

javascript generate a guid

摘要: function Guid() { var random = (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1); return random; }; function GenerateGUID() { var guid = (Guid() + Guid() + "-" + Guid() + "-" + Guid() + "-" + Guid() + "-" + Guid() + Guid() + Guid... 阅读全文

posted @ 2014-04-08 17:59 paul_cheung 阅读(315) 评论(0) 推荐(0) 编辑

ajax请求后根据条件进行页面跳转

摘要: $.ajx({ url: "@Url.Action("DetectCorporationCompetencyCreated", "DataBase")", data: { corporationId: rowId }, async:false, success: function (data) { ... 阅读全文

posted @ 2014-04-08 17:58 paul_cheung 阅读(706) 评论(0) 推荐(0) 编辑

jquery validate ajax submit form

摘要: when the jquery validation plugin is used for validating the form data, such as below:html code: 预定版本 免费版本 联系人 ... 阅读全文

posted @ 2014-04-08 15:33 paul_cheung 阅读(1012) 评论(1) 推荐(0) 编辑

2014年3月28日 #

A potentially dangerous Request.Form value was detected from the client

摘要: 提交表单中包含特殊字符如可能被认为是跨站攻击代码;解决方法很多,如stackoverflow上的web.config中加设置的方法不中肯[如原贴中Jamie M所说],主要是在.net4.5 asp.net mvc5下用(和)会报错[至少在我本机上有这个问题],于是就如Jamie M建议的做法:在C... 阅读全文

posted @ 2014-03-28 21:26 paul_cheung 阅读(195) 评论(0) 推荐(0) 编辑

2014年2月17日 #

linq to entity中遇到的问题

摘要: 当使用 from m in _db.students从数据库中获取数据时,数据库中的数据类型和C#中的不同,所以可能会出错!先作_db.students.ToList()然后select 阅读全文

posted @ 2014-02-17 17:26 paul_cheung 阅读(124) 评论(0) 推荐(0) 编辑

asp.net项目下的web service返回json数据问题

摘要: App_Code目录下放置WebService.cs文件,文件内容如:using System;using System.Collections.Generic;using System.Data;using System.Data.SqlClient;using System.Linq;using System.ServiceModel.Web;using System.Text;using System.Web;using System.Web.Script.Serialization;using System.Web.Script.Services;using System.Web.Se 阅读全文

posted @ 2014-02-17 17:21 paul_cheung 阅读(1017) 评论(0) 推荐(0) 编辑