data segmentmax_len db 10real_len db ?buf_str db 10
dup(0)CRLF DB 0AH,0DH,"$";data endscode segment assume cs:code,ds:datastart: mov
ax,data ...
分类:
其他好文 时间:
2014-06-06 11:28:44
阅读次数:
206
头部加上EnableEventValidation="false"
ValidateRequest="false"
分类:
其他好文 时间:
2014-06-06 10:43:48
阅读次数:
172
#include#includetypedef struct Node{ int
data; struct Node *next;}LinkList;//就地反转int LinkListRerverse(LinkList
*head){ LinkList *q,*p; p = head->next;...
分类:
其他好文 时间:
2014-06-06 07:35:54
阅读次数:
283
在AndroidManifest.xml中, java代码段:ActivityInfo
info=this.getPackageManager() .getActivityInfo(getComponentName(),
PackageManager.GET_META_DATA); String.....
分类:
移动开发 时间:
2014-06-06 07:08:20
阅读次数:
277
整个备份过程可以分为如下两大步骤进行:一、通过“Export Data-tier
Application”先将目标SQL Azure的数据库备份到本地,详细步骤如下:1、启动SQL Server Management
Studio,连接目标SQL Azure。选择SQL Azure中要备份的目标数据...
分类:
数据库 时间:
2014-06-05 22:11:28
阅读次数:
481
今天找了半天,终于解决了如何从本地连接到远程sql server服务器的方法。
1、首先确保打开远程服务器的sql server配置管理器,确保TCP/IP协议开启 2、WebConfig的连接字符格式 其中Data
Source=IP,端口号 默认连接到数据库实例 这样就能保证远程连接了。
分类:
数据库 时间:
2014-06-05 20:14:13
阅读次数:
366
一:DateTime.ParseExact方式,截图二:代码using
System;using System.Collections.Generic;using System.ComponentModel;using
System.Data;using System.Drawing;using S...
分类:
其他好文 时间:
2014-06-05 19:55:41
阅读次数:
271
一:使用正则表达式验证电话号码,截图二:代码using System;using
System.Collections.Generic;using System.ComponentModel;using System.Data;using
System.Drawing;using System.Te...
分类:
其他好文 时间:
2014-06-05 19:21:49
阅读次数:
265
SGI -- Silicon Graphics[Computer System]
Inc.硅图[计算机系统]公司.STL -- Standard Template
Library标准模板库。容器的概念所谓STL容器,即是将最常运用的一些数据结构(data structures)实现出来。容器是指容纳...
分类:
编程语言 时间:
2014-06-05 18:27:04
阅读次数:
431
base64_encode将字符串以 BASE64 编码。语法: string
base64_encode(string data);返回值: 字符串函数种类: 编码处理解释:设计此种编码是为了使二进制数据可以通过非纯 8-bit
的传输层传输,例如电子邮件的主体。本函数将字符串以 MIME BAS...
分类:
Web程序 时间:
2014-06-05 18:12:20
阅读次数:
252