using System;using System.Collections.Generic;using System.Text;using System.Management;using Utility;using EXDataControl;using System.Collections;usi...
分类:
Web程序 时间:
2014-07-16 23:13:16
阅读次数:
230
using System.Text.RegularExpressions; //脱机数据导出 private void writeTxt(string str) { string strFileName = @"\Program Files\fir...
分类:
Web程序 时间:
2014-07-16 23:11:15
阅读次数:
252
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window...
分类:
Web程序 时间:
2014-07-16 23:08:43
阅读次数:
264
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