1: using System; 2: using
System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: 6:
namespace AnkeEdu.Tools 7: { 8: 9: /// 10: ///...
分类:
移动开发 时间:
2014-05-09 23:40:45
阅读次数:
551
1: 2: // 创建日期: 2008-04-23 3: // 说 明:
日期,时间处理相关的类,大多转换为字符串。 4: using System; 5: using System.Collections.Generic; 6:
using System.Text; 7: 8: namespace...
分类:
其他好文 时间:
2014-05-09 23:38:25
阅读次数:
459
1: using System; 2: using
System.Collections.Generic; 3: using System.Linq; 4: using System.Text; 5: 6:
namespace AkDTH.Common 7: { 8: /// 9: /// 时间字符...
分类:
其他好文 时间:
2014-05-09 23:29:10
阅读次数:
400
基本知识
1. SQL Server7 的 DeskTop 版中没有全文本检索。
2. 一个表只能有一个全文本检索。
3. 被检索的表必须有单列的唯一索引。
4. 全文本的索引存储在文件系统中,而非数据库中。
5. 更新全文本索引的过程比常规索引要耗时,而且也不象常规索引那样可以由数据库系统立即更新。
6. 全文本索引包含在全文本目录( Full-Text Catalog ...
分类:
其他好文 时间:
2014-05-09 22:54:56
阅读次数:
361
Sublime Text默认的语法高亮已经很漂亮了,但是对于个别语言还是有些不爽。
默认高亮规则叫Monokai,可以从Preferences->Settings - Default中看到:
可是这个高亮规则对Json语法的高亮却显得有点单调。上图的配置就是Json格式的。
下面说说是怎么换的。
一、下载自己喜欢的主题
Control + Shift + P打开控制台,输入IP,...
分类:
其他好文 时间:
2014-05-09 22:45:00
阅读次数:
562
INI文件的操作(ASP.NET+C#)
(一)INIFile.cs
using System;
using System.Runtime.InteropServices;
using System.Text;
namespace CreateWebDir
{
///
/// INIFile 的摘要说明。
///
public class INIFile ...
分类:
Web程序 时间:
2014-05-09 22:18:42
阅读次数:
319
这里指的水平居中当然是说通过CSS来自动控制的,而不是说计算之后,设置一个位置来指定居中的。一般情况下有三种实现方式:在实现方式中,我们定义两个名词来方便后面的解说:out--包含需要被居中元素的那个容器,in--需要居中的元素。1.
text-align: center设置out的text-ali...
分类:
Web程序 时间:
2014-05-09 19:52:24
阅读次数:
535
原生js方式:var obj =
document.getElementByIdx_x(”testSelect”); //定位idvar index = obj.selectedIndex;
// 选中索引var text = obj.options[index].text; // 选中文本var ...
分类:
Web程序 时间:
2014-05-09 19:48:36
阅读次数:
384
using System;using System.IO;using
System.Security.Cryptography;using System.Text;namespace Test{ public class
MD5Code { /// /// ...
分类:
其他好文 时间:
2014-05-09 19:43:27
阅读次数:
277
1.安装Sublime Package Control在Sublime Text
2上用Ctrl+~打开控制台并在里面输入以下代码,Sublime Text 2就会自动安装Package Control。import urllib2,os;
pf=’Package Control.sublime-p...
分类:
其他好文 时间:
2014-05-09 19:31:24
阅读次数:
270