玩转C科技.NET

从学会做人开始认识这个世界!http://volnet.github.io

导航

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 21 下一页

2009年7月5日 #

将所有图片包含在一张图片中,以提高网页访问速度

摘要: 当我们开始大量地使用图片美化网站的时候,不知道是否想过可以在不改变原貌的情况下提高网页的性能呢? 网页的性能来源于哪些? 网页内容的数量,N多图片的网页比起纯文本的网页,都会相对肥重一点。与此相同的技术还有返回Gzip压缩的数据。 请求的次数,每次请求本身都需要耗费传输数据以外的额外资源,包括但不限于三次握手连接,服务器线程占用,以及浏览器实现请求所带来的代码执行所带来的花销。 还有一些包括... 阅读全文

posted @ 2009-07-05 12:11 volnet(可以叫我大V) 阅读(1422) 评论(5) 推荐(0) 编辑

2009年6月28日 #

About Request.Url

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Text;namespace WebAppRequestUrl{ public partial class ... 阅读全文

posted @ 2009-06-28 16:47 volnet(可以叫我大V) 阅读(1536) 评论(0) 推荐(0) 编辑

The ThreadAbortException from Response.End()

摘要: /// <devdoc>/// <para> /// Terminates execution of the current page and begins execution of a new/// request using the supplied URL path./// If preserveForm is false, the QueryString and F... 阅读全文

posted @ 2009-06-28 03:38 volnet(可以叫我大V) 阅读(883) 评论(0) 推荐(0) 编辑

2009年6月27日 #

[Code reverse]Int to Hex & Hex to int

摘要: private static int HexToInt(char h) { return( h >= '0' && h <= '9' ) ? h - '0' : ( h >= 'a' && h <= 'f' ) ? h - 'a' + 10 : ( h >= 'A' && h <= 'F' ) ? h - 'A' ... 阅读全文

posted @ 2009-06-27 21:57 volnet(可以叫我大V) 阅读(1313) 评论(0) 推荐(0) 编辑

2009年6月14日 #

如何获取本地局域网内的可用IP地址

摘要: 命题:如何获取本地局域网内的可用IP地址? 从这个命题,可以看出这里要解释的概念,什么是局域网?详见(http://baike.baidu.com/view/788.htm) 当然,在这篇文章中我们是指我们可以有效ping通的IP地址。 思路1: 穷举: 假设我们知道我们的IP地址为192.168.1.1 /24,即子网掩码为255.255.255.0,那么通过匹配192.168.1.*,所有可p... 阅读全文

posted @ 2009-06-14 04:23 volnet(可以叫我大V) 阅读(5372) 评论(0) 推荐(0) 编辑

2009年5月28日 #

简历要怎样写呢?面试要注意哪些细节?

摘要: 已经有很多文章来描述这个主题了,我这里就讲讲我的一些看法。 给你一份简历,你会怎么看?如果你不是每天吃饱了没事做专业面试的?你会怎么面? 如果给你一份简历,嗯,项目经历要介绍,但注意不是项目介绍,有人做了某某产品系统,让他做个介绍,他就开始跟我介绍这个产品,电话这头的我倒是顺便了解了一个新产品,但对他而言丝毫没有帮助,因为我很清晰,这个人肯定理解力或者表达力有欠缺,或者这个项目压根就没啥可提的。当... 阅读全文

posted @ 2009-05-28 04:28 volnet(可以叫我大V) 阅读(2585) 评论(22) 推荐(0) 编辑

2009年3月19日 #

[CodeReserve]GetAttributeFromHeader

摘要: 以下代码可以从http header中获取一个attribute的值。如: String b = GetAttributeFromHeader(ContentType, "boundary"); private static String GetAttributeFromHeader(String headerValue, String attrName) { if (headerVal... 阅读全文

posted @ 2009-03-19 16:31 volnet(可以叫我大V) 阅读(401) 评论(0) 推荐(0) 编辑

Forms in HTML documents - Form submission

摘要: 内容涉及:form(表单)提交的相关细节。 <form method=”get/post” … 其中get只支持ASCII字符,而post支持[ISO10646]字符集。 Successful controls的定义。 get方法将form data set附加到action的URI后,post则将它放在form的body中发送。 user agent(e.g IE, Firefox …)处理form submission的四个步骤。 application/x-www-form-urlencoded和multipart/form-data的区别。其中包括 阅读全文

posted @ 2009-03-19 03:44 volnet(可以叫我大V) 阅读(664) 评论(0) 推荐(0) 编辑

2009年3月14日 #

ASP.NET MVC – Nerdinner - notes

摘要: The blog record any valuable point from the free book. 《Professional ASP.NET MVC 1.0》! The blog write by volnet. 1.Page 12/196 ASP.NET MVC projects by default have six top-level directories: Dire... 阅读全文

posted @ 2009-03-14 23:52 volnet(可以叫我大V) 阅读(573) 评论(0) 推荐(0) 编辑

2009年2月27日 #

【搞笑】Best Computer Programming Videos【转】【视频】

摘要: 转自:http://www.devtopics.com/best-computer-programming-videos/ We interrupt your regular programming to bring you these entertaining computer programming videos… If Programmers Built Planes First F... 阅读全文

posted @ 2009-02-27 17:47 volnet(可以叫我大V) 阅读(359) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 21 下一页
使用Live Messenger联系我
关闭