using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window...
分类:
Web程序 时间:
2014-07-12 13:20:33
阅读次数:
230
一、TCP握手协议 在TCP/IP协议中,TCP协议提供可靠的连接服务,采用三次握手建立一个连接。 第一次握手:建立连接时,客户端发送syn包(syn=j)到服务器,并进入SYN_SEND状态,等待服务器确认; 第二次握手:服务器收到syn包,必须确认客户的SYN(ack=j+1),同时自己也发送一...
分类:
其他好文 时间:
2014-07-10 14:25:10
阅读次数:
235
Step 1: Convert any text into uint8 type in matlab : Step 2: Add models in matlab : copy the uint8 numbers and put them in Repeating Sequence Stair mo...
分类:
其他好文 时间:
2014-07-10 13:47:42
阅读次数:
327
STM8虽然功能齐全,但是空间不足也是经常出来的情况。要么.text overflow,要么.bss overflow,让人头疼。这里把一些优化方案列出来,让空间得到充分利用: 1、在Project settings下,C Compiler,Optimizations选择Customize 重点是把...
分类:
其他好文 时间:
2014-07-10 13:44:13
阅读次数:
309
.section .data.output: .ascii "%d\n\000".section .text .global mainmain: mov ip, sp stmfd sp!, {fp,ip,lr,pc} sub fp, ip, #4 sub sp, sp, #80 @m...
分类:
编程语言 时间:
2014-07-10 13:11:49
阅读次数:
950
// 替换特殊字符function HTMLEncode(text){text = text.replace(/&/g,"&") ;text = text.replace(/"/g,""") ;text = text.replace(//g,">") ;text = text...
分类:
其他好文 时间:
2014-07-10 13:04:38
阅读次数:
386
如果项目是“新建网站”,添加的ashx是没有ashx.cs的;如果是新建"asp.net web 应用程序",添加的ashx是有ashx.cs的。 今天做项目测试遇到一个问题,因为text2.ashx与text.ashx代码大部分是相同的只是调用的模板文件不同,所以就拷贝text.ashx然后改名成...
分类:
其他好文 时间:
2014-07-10 13:02:37
阅读次数:
235
下载一个你喜欢的icon,文件格式为ico,然后将这个文件重命名为favicon.ico,并把文件放在网站的根目录下。一般在ie8版本以上都支持icon图标。但是在此版本一下,我们需要添加一段代码。找到head标签之间的代码,我们要在head之间插入这段代码。
分类:
Web程序 时间:
2014-07-10 12:34:47
阅读次数:
206
属性(Properties)版本(Version)兼容性(Compatibility)简介(Description)文本属性 Text Propertiestext-indentCSS1IE4+ , NS4+检索或设置对象中的文本的缩进。text-overflowIE专有属性IE6+设置或检索是否使...
分类:
Web程序 时间:
2014-07-10 12:23:09
阅读次数:
225
using System;using System.Collections.Generic;using System.Linq;using System.Net.Mail;using System.Text;using System.Threading.Tasks;namespace QQEmail...
分类:
其他好文 时间:
2014-07-10 11:45:31
阅读次数:
189