- 浏览: 22568 次
- 性别:
- 来自: 武汉
最近访客 更多访客>>
最新评论
-
vip40096848:
你还不如把代码全部都省略了算了。
Extjs 数据读取对象ArrayReader/JsonReader/XmlReader -
ssuupv:
不错.收藏一下.
海量数据库的查询优化及分页算法方案
文章列表
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
namespace MeiDuShaV1.Business
{
public class INIManager
{
/*原型
* BOOL WritePrivateProfileString(
LPCTSTR lpAppName, //是INI文件中的一个字段名.
...
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5using System;
6using System.Data;
7using System.DirectoryServices;
8using System.Collections;
9
10namespace IISManage
11{
12 /**////<summary>
13 /// IIS管理类,可以实现创建站点、虚拟目录,删除虚拟目录等 /// ...
- 2008-03-28 15:05
- 浏览 2350
- 评论(0)
在asp.net ajax中,使客户端调用WebService变得非常的简单,而且非常有用(个人觉得这个功能是asp.net ajax的核心,很多与客户端的交互都需要个功能来辅助实现)。那在EXT中,标准的客户端与服务器端交互,使用的是自定义的HttpHandler,而且服务器在处理客户端提交的参数也都必须是弱类型的使用方式,也会使用带一定的不便。如果你曾经使用过Asp.net ajax调用WebService,那你肯定非常希望EXT也能像那样简单的调用WebService。
默认情况下,EXT也是可以调用WebService的,在这篇博客里已经有做介绍《ExtJS与.NET结合开发实例(Gr ...
- 2008-03-28 10:17
- 浏览 4714
- 评论(0)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.Script.Serialization;
using System.Runtime.Serialization.Json;
using System.Reflection;
namespace CommonHelper
...{
public static class JSONHelper
...{
/**//// <summa ...
- 2008-03-28 10:14
- 浏览 4601
- 评论(0)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>无标题页</title>
<script src="ExtJs/ext-bas ...
- 2008-03-28 10:04
- 浏览 8506
- 评论(1)
(一)深入浅出理解索引结构 实际上,您可以把索引理解为一种特殊的目录。微软的SQL SERVER提供了两种索引:聚集索引(clustered index,也称聚类索引、簇集索引)和非聚集索引(nonclustered index,也称非聚类索引、非簇集索引)。下面,我们举例来说明一下聚集索引和非聚集索引的区别: 其实,我们的汉语字典的正文本身就是一个聚集索引。比如,我们要查“安”字,就会很自然地翻开字典的前几页,因为“安”的拼音是“an”,而按照拼音排序汉字的字典是以英文字母“a”开头并以“z”结尾的,那么“安”字就自然地排在字典的前部。如果您翻完了所有以“a”开头的部分仍然找不到这个字 ...