码迷,mamicode.com
首页 >  
搜索关键字:text    ( 52583个结果
Enable Sublime text 2 to support GBK in Mac
The Sublime is my most loving editor,but is not very familiar with it.Here,I will tell you how to install package controllmanual installationStep 1: d...
分类:系统相关   时间:2015-01-06 15:10:29    阅读次数:259
汉字转拼音
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Text.RegularExpressions;public class PinYin{ //定义拼音区...
分类:其他好文   时间:2015-01-06 15:06:17    阅读次数:194
css中table样式
border-spacing:设置相邻单元格的边框间的距离;border-collapse:设置表格的边框是否被合并为一个单一的边框;{separate/collapse/inherit(IE不支持该属性)}text-align:水平对齐方式{left/center/right}vertical-a...
分类:Web程序   时间:2015-01-06 15:02:17    阅读次数:198
响应消息的内容类型text/html与绑定的text/xml内容类型不匹配
解决方法其中有一个服务报以下错误处理方法是将 Global.asax中的 SRC="Global.asax.cs" 改写成Codebehind="Global.asax.cs"
分类:Web程序   时间:2015-01-06 11:30:45    阅读次数:276
C# string类型和byte[]类型相互转换
string类型转成byte[]:byte[]byteArray=System.Text.Encoding.Default.GetBytes(str);byte[]转成string:stringstr=System.Text.Encoding.Default.GetString(byteArray)...
分类:Windows程序   时间:2015-01-06 11:30:06    阅读次数:202
计算机系统学习笔记(1)-Hello World的一生。
#include int main() { printf("Hello World\n"); } 上面是一个c语言的hello world程序,虽然少了return 0, 但这对本文的主题没有影响。上面的hello.c程序是以一系列的bytes形式在文件中存在,每一个byte有个整数值,对应一个字符,而这个整数值叫做ASCII码,由ASCII码组成的文件叫做 text files....
分类:其他好文   时间:2015-01-06 10:14:43    阅读次数:173
ASP.Net将图片以二进制方式存入数据库,并读取
把图片转换成二进制--把二进制转换成图片 private void button1_Click(object sender, EventArgs e) { string path = this.textBox1.Text; by...
分类:数据库   时间:2015-01-06 09:54:26    阅读次数:193
mysqli面向过程练手
1 代码: 2 //1.得到mysqli连接 3 header("Content-type: text/html;charset=utf-8"); 4 $mysqli=mysqli_connect("localhost","root","root","test"); 5...
分类:数据库   时间:2015-01-05 23:10:58    阅读次数:183
常用meta整理
元素概要标签提供关于HTML文档的元数据。元数据不会显示在页面上,但是对于机器是可读的。它可用于浏览器(如何显示内容或重新加载页面),搜索引擎(关键词),或其他 web 服务。 ——W3School必要属性属性值描述contentsome text定义与http-equiv或name属性相关的元信....
分类:Web程序   时间:2015-01-05 23:07:40    阅读次数:285
MyMathLib系列(向量运算--1)
主要是线性代数的第2章的算法,由于本章的大部分都是概念性的,而且后面还有矩阵,因此算法较少:/*Vector.cs * Albert.Tian on 20141225 */ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MyMathLib { ...
分类:其他好文   时间:2015-01-05 21:59:26    阅读次数:233
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!