码迷,mamicode.com
首页 >  
搜索关键字:text    ( 52583个结果
.Net常用技巧_软件注册码
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
.Net常用技巧_C#写入和读取txt文件
using System.Text.RegularExpressions; //脱机数据导出 private void writeTxt(string str) { string strFileName = @"\Program Files\fir...
分类:Web程序   时间:2014-07-16 23:11:15    阅读次数:252
.Net常用技巧_C#打印(PrintDocument、PrintDialog、PageSetupDialog、PrintPreviewDialog)
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
.Net常用技巧_VS2005[C#] 操作 Excel 全攻略(转)
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/TP 三次握手
一、TCP握手协议 在TCP/IP协议中,TCP协议提供可靠的连接服务,采用三次握手建立一个连接。 第一次握手:建立连接时,客户端发送syn包(syn=j)到服务器,并进入SYN_SEND状态,等待服务器确认; 第二次握手:服务器收到syn包,必须确认客户的SYN(ack=j+1),同时自己也发送一...
分类:其他好文   时间:2014-07-10 14:25:10    阅读次数:235
Text Converted into Speech in Pi
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空间不足的解决方法
STM8虽然功能齐全,但是空间不足也是经常出来的情况。要么.text overflow,要么.bss overflow,让人头疼。这里把一些优化方案列出来,让空间得到充分利用: 1、在Project settings下,C Compiler,Optimizations选择Customize 重点是把...
分类:其他好文   时间:2014-07-10 13:44:13    阅读次数:309
ARM汇编语言实现while循环
.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
如果项目是“新建网站”,添加的ashx是没有ashx.cs的;如果是新建"asp.net web 应用程序",添加的ashx是有ashx.cs的。 今天做项目测试遇到一个问题,因为text2.ashx与text.ashx代码大部分是相同的只是调用的模板文件不同,所以就拷贝text.ashx然后改名成...
分类:其他好文   时间:2014-07-10 13:02:37    阅读次数:235
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!