上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 27 下一页
摘要: 以前对社保不是很了解,总以为是交得越多越好,因为你交得多,公司相应就交得更多。但是最近这两天仔细研究了一下社保政策,真是有点大吃一惊,发现完全不是这么回事,从某种意义上来说,反而是交得越多越亏,真的是这样吗? 以上海为例,社保的基数上限是前一年的平均工资的三倍,2006年为235*3=6705元,假设你的工资为8000元,那么将以6705为基数缴纳社保。 首先是养老保险,这个金额是... 阅读全文
posted @ 2008-01-08 11:31 PointNet 阅读(2118) 评论(5) 推荐(0) 编辑
摘要: 问: 一个页面里有个复选select 因为option是动态变化的 我想在提交后得到这个select里所有option的value 不管是否选中 那位能告诉我怎么做 ______________________________________________________________________________________________ 答1: var o = document.... 阅读全文
posted @ 2008-01-07 19:56 PointNet 阅读(14559) 评论(0) 推荐(0) 编辑
摘要: 刚刚在洗衣服的时候突然想到今天在做WAP程序的表单验证的时候遇到一个问题,在不支持Cookies的移动设备模拟器中无法正常进行表单验证,联想到昨天使用web.config设置cookieless属性时会在访问时会出现"Cannot use a leading .. to exit above the top directory"的异常,自然而然的我就想到了前一段时间困扰我很久的一个站点异常无法... 阅读全文
posted @ 2007-12-25 14:34 PointNet 阅读(546) 评论(0) 推荐(0) 编辑
摘要: FCKeditor offers a complete JavaScript API so you can interact with it once the editor is loaded and running. Once loaded, the editor registers a global object called FCKeditorAPI. This object offers... 阅读全文
posted @ 2007-12-17 09:59 PointNet 阅读(1293) 评论(0) 推荐(0) 编辑
摘要: fckEditor 阅读全文
posted @ 2007-12-15 12:49 PointNet 阅读(573) 评论(1) 推荐(0) 编辑
摘要: 一、准备工作 首先下载最新版的FCKeditor V2.3,下载地址:http://prdownloads.sourceforge.net/fckeditor/FCKeditor_2.3.zip?download;这个压缩包里并不包含ASP.NET要用到的DLL控件,所以还要下载另外一个压缩包,下载地址:http://sourceforge.net/project/showfiles.php... 阅读全文
posted @ 2007-12-14 10:19 PointNet 阅读(402) 评论(0) 推荐(0) 编辑
摘要: JSON (JavaScript Object Notation)一种简单的数据格式,比xml更轻巧。 JSON 是 JavaScript 原生格式,这意味着在 JavaScript 中处理 JSON 数据不需要任何特殊的 API 或工具包。 JSON的规则很简单: 对象是一个无序的“‘名称/值’对”集合。一个对象以“{”(左括号)开始,“}”(右括号)结束。每个“名称”后跟一个“:”(冒号);“... 阅读全文
posted @ 2007-12-13 10:13 PointNet 阅读(738) 评论(0) 推荐(0) 编辑
摘要: HTTP运行期 HTTP运行期处理客户端应用程序(例如Web浏览器)进入的一个Web请求,通过处理它的应用程序的适当组件路由请求,然后产生响应并发回提出请求的客户端应用程序。 进入的HTTP Web请求最先由IIS Web服务器接收到,它在此请求基于ASP.NET已注册处理的扩展名传送到ASP.NET ISAPI上。 HTTP运行期首先创建一个HttpContext对象的实例,它包含了当前正在处理... 阅读全文
posted @ 2007-12-12 09:54 PointNet 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 当一个HTTP请求到达HttpModule时,整个ASP.NET Framework系统还并没有对这个HTTP请求做任何处理,也就是说此时对于HTTP请求来讲,HttpModule是一个HTTP请求的“必经之路”,所以可以在这个HTTP请求传递到真正的请求处理中心(HttpHandler)之前附加一些需要的信息在这个HTTP请求信息之上,或者针对截获的这个HTTP请求信息作一些额外的工作,或者在某... 阅读全文
posted @ 2007-12-11 13:37 PointNet 阅读(422) 评论(3) 推荐(0) 编辑
摘要: String.substr(N1,N2) 这个就是我们常用的从指定的位置(N1)截取指定长度(N2)的字符串; String.substring(N1,N2) 这个就是我们常用的从指定的位置(N1)到 指定的位置(N2)的字符串; 还有如下说法: String.substr(N1,N2) 这个就是我们常用的从指定的位置(N1)截取指定长度(N2)的字符串; String.substrin... 阅读全文
posted @ 2007-12-10 10:14 PointNet 阅读(469) 评论(0) 推荐(0) 编辑
摘要: Summary private variables are declared with the 'var' keyword inside the object, and can only be accessed by private functions and privileged methods. private functions are declared inline in... 阅读全文
posted @ 2007-12-09 11:24 PointNet 阅读(437) 评论(0) 推荐(0) 编辑
摘要: 不知道大家留意到没有了: FreeTextbox 不开源了,虽然我还有它以前的开源版本。 CSDN用的这个在线编辑器很优秀。 它的名字叫做FCKEditor 它是开源的 与平台无关,最起码能支持 Asp, Asp.net , PHP 以前我一直用FreeTextBox(主要是从Community Server那里知道的)。但是发现它并不是想象中好用... 阅读全文
posted @ 2007-12-05 09:15 PointNet 阅读(501) 评论(0) 推荐(0) 编辑
摘要: A small trick when creating table dynamically with javascript. 下面这种方式可以创建table,并附加到Dom树中,但是在IE中是不显示的: var table = document.createElement("TABLE"); var tr = document.createElement("TR"); var td = docum... 阅读全文
posted @ 2007-12-04 09:19 PointNet 阅读(1216) 评论(2) 推荐(0) 编辑
摘要: 功能:在textbox中输入内容,动态从数据库模糊查询显示到下拉框中,以供选择 1.建立一aspx页面,html代码 1 2 3 WebForm1 4 47 48 49 50 51 52 53 54 55 2.cs代... 阅读全文
posted @ 2007-12-03 10:18 PointNet 阅读(3245) 评论(0) 推荐(0) 编辑
摘要: We've all seen blogs and other web sites that seem to be able to intersperse hyperlinks throughout their content, almost whimsically, if the given text is "linkable", or, formatted like a domain name ... 阅读全文
posted @ 2007-11-30 12:19 PointNet 阅读(407) 评论(0) 推荐(0) 编辑
摘要: 1、首先下载AjaxPro 组件。并将AjaxPro.dll引用到网站(或项目)。 2、修改Web.config。在 元素中添加以下代码。 3、对AjaxPro在页Page_Load事件中进行运行时注册。如: protected void Page_Load(object sender, EventArgs e) { Ajax... 阅读全文
posted @ 2007-11-29 09:13 PointNet 阅读(719) 评论(0) 推荐(0) 编辑
摘要: js类: /*************************************************************** * 作者:mousecat, mousecat4444@126.com * 版本:v1.3 * 修改记录: * (1)增加默认验证提示信息。 * (2)修改电话号码验证规则,使之符合086-010-87654321 * (3)简化类调用方式 * (4)简化描述... 阅读全文
posted @ 2007-11-28 09:46 PointNet 阅读(3178) 评论(0) 推荐(0) 编辑
摘要: asp.net中如何删除cookie? 不能直接删除用户计算机中的 Cookie。但是,可以通过将 Cookie 的到期日期设置为过去的日期,让用户的浏览器来删除 Cookie。当用户下一次向设置该 Cookie 的域或路径内的页发出请求时,浏览器将确定该 Cookie 已到期并将其移除。 调用 Cookies集合的 Remove方法可从服务器端的集合中移除 Cookie,使 Cookie... 阅读全文
posted @ 2007-11-27 09:26 PointNet 阅读(4265) 评论(0) 推荐(0) 编辑
摘要: 得到本网站写的所有cookie 请参考 HttpCookie c; string subKeyName; string subKeyValue; for(int i = 0; i "); } } else Response.Write(c.Name + " " + c.Value + ""); } 阅读全文
posted @ 2007-11-26 09:42 PointNet 阅读(3359) 评论(0) 推荐(0) 编辑
摘要: log4net asp.net2.0 阅读全文
posted @ 2007-11-25 12:09 PointNet 阅读(1031) 评论(2) 推荐(0) 编辑
摘要: 经验: 1.如何在客户端用JS获取及设置FreeTextBox的内容? 它提供了Javascript API 获取FTB内容 FTB_API['ctl00_ContentRegion_InputArticle1_FreeTextBox1'].GetHtml(); ctl00_ContentRegion_InputArticle1_FreeTextBox1是FreeTextBox的客户端ID... 阅读全文
posted @ 2007-11-23 18:46 PointNet 阅读(1825) 评论(1) 推荐(0) 编辑
摘要: 举个例子,比如数据库中有如下数据 a1 a2 a3 a4 a5 1 a aaa a a 2 b bbb b b ... 阅读全文
posted @ 2007-11-23 09:04 PointNet 阅读(1060) 评论(2) 推荐(0) 编辑
摘要: /**//// /// 去除HTML标记 /// /// 包括HTML的源码 /// 已经去除后的文字 public static string NoHTML(string Htmlstring) { //删除脚本 Htmlstring = Regex.Replac... 阅读全文
posted @ 2007-11-22 09:55 PointNet 阅读(711) 评论(1) 推荐(0) 编辑
摘要: Adding OnClick property to dynamicly genertated html element function klik(){ alert("ppp"); } function addNewImg(newImageId){ newImg = document.createelement('img'); newImg.id = "image"+newImag... 阅读全文
posted @ 2007-11-22 09:54 PointNet 阅读(653) 评论(0) 推荐(0) 编辑
摘要: PHP Code: http://www.haqoo.com * */ $blog = new Sina_Blog; $blog->init(); $user="showmygod"; $pass="你的新浪密码"; if($blog->login($user,$pass)){ echo "登录成功\n"; }else{ die("用户名或者密码错误");... 阅读全文
posted @ 2007-11-22 09:54 PointNet 阅读(1649) 评论(0) 推荐(0) 编辑
摘要: POSTing data As I mentioned earlier POST data is important in Web request applications and getting the data into the proper format for posting can be tricky requiring possibly a fair amount of code. w... 阅读全文
posted @ 2007-11-21 13:48 PointNet 阅读(652) 评论(0) 推荐(0) 编辑
摘要: The following procedure describes the steps used to send data to a server. This procedure is commonly used to post data to a Web page. To send data to a host server Create a WebRequest inst... 阅读全文
posted @ 2007-11-20 09:41 PointNet 阅读(896) 评论(0) 推荐(0) 编辑
摘要: freetextbox 阅读全文
posted @ 2007-11-19 09:14 PointNet 阅读(427) 评论(0) 推荐(0) 编辑
摘要: Introduction I will briefly demonstrate how to upload multiple files using one HttpInputFile control - Hotmail style! Many developers have been asking how to upload multiple files at once. The ... 阅读全文
posted @ 2007-11-18 21:42 PointNet 阅读(571) 评论(0) 推荐(0) 编辑
摘要: 工具准备:VS2005. Subversion... 阅读全文
posted @ 2007-11-16 09:08 PointNet 阅读(1753) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 27 下一页