11 2012 档案
摘要:200-OK这个没啥说的,一切正常。301-永久的重定向这个做SEO的应该不会陌生吧404-你懂的,哈哈503 -服务不可得Service Temporarily UnavailableThe server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.504-网关超时GateWay Timeout.注:2**-这些是成功的 3××-这些跟重定向相关的 4××-这些
阅读全文
摘要:1.内置字符串类型string.xsd: 1 <?xml version="1.0" encoding="UTF-8"?> 2 <!--W3C Schema generated by XMLSpy v2008 rel. 2 sp2 (http://www.altova.com)--> 3 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> 4 <xs:complexType name="strlist_Type"&
阅读全文
摘要:原文:http://www.codeproject.com/Articles/457444/List-box-control-with-tooltip-for-each-itemIntroduction 简介This article describes a way of displaying tooltips for items in a Windows FormsListBoxcontrol. The built-inToolTipcontrol allows you to display a single tooltip for the entire listbox. However, i
阅读全文
摘要:题外话:-):尽管都Schema了,了解下DTD还是有好处的.就好比拿asp的站,得至少对asp使用有个大体了解吧做个笔记:1.DTD注释同xml: 1 <!-- 2 Extensible HTML version 1.0 Transitional DTD 3 4 This is the same as HTML 4 Transitional except for 5 changes due to the differences between XML and SGML. 6 7 Namespace = http://www.w3.org/1999/xhtml 8 ...
阅读全文
摘要:文件传输协议(File Transfer Protocol, FTP)1. 介绍FTP 的目标是提高文件的共享性,提供非直接使用远程计算机,使存储介质对用户透明和可靠高效地传送数据。虽然我们也可以手工使用它,但是它的主要作用是供程序使用的。在阅读本文之前最好能够阅读 TCP 协议标准规范和 Telnet 协议标准规范。2. 概览在本节中我们将讨论一些表面上的问题,有些名词的定义请参阅 TCP 和 Telnet参考文献。我们先介绍一下(1)字节大小,在 FTP 中字节大小有两个:逻辑字节大小和用于传输的字节大小。后者通常是 8 位,而前者可不一定是多少了。传输字节不必等于逻辑字节大小,也不必对数
阅读全文