
技术文档
文章平均质量分 55
wangxi1240
这个作者很懒,什么都没留下…
展开
-
CodeAndDecode
void Cancel_Click(object sender, EventArgs e) { userName.Text = ""; password.Text = ""; repeatPassword.Text = ""; result.Text = ""; } void HashPassword_Click(object sender, EventArgs e) { if (Page.I原创 2004-07-19 10:36:00 · 661 阅读 · 0 评论 -
Cryptography
using System;using System.Text;using System.Security.Cryptography;using System.IO;namespace des1{ /// /// testDea 的摘要说明。 /// public class Des3 { public Des3() { } /// /// 加密方法 /// /// 明文,U原创 2004-07-19 10:45:00 · 722 阅读 · 0 评论 -
I tried it, and wanted to know when and where i should put the summary
Using the Windows Forms XML Parser Sample by Joe Stegman Download the sample Table of Contents Introduction Basic Sample Markup Reference Markup Parser Reference Introduction This is a sample of a原创 2004-07-19 10:32:00 · 663 阅读 · 0 评论 -
如何从数据表中选择数据
string str = a_strMoCode; DataRow[] arrDR = dsContent.Tables[0].Select("InsertDateTime = " + DateTime.Now.ToString("yyyy-MM-dd") + " and MoCode like " + str + "%","Mocode asc"); Data原创 2004-07-16 16:18:00 · 766 阅读 · 0 评论 -
javascript 实现滚屏
document.write(""); 这里面是要滚动的内容 document.write("原创 2004-07-27 14:46:00 · 929 阅读 · 0 评论 -
what's wap 2.0
By Russ Green Figures: Click to EnlargeFigure 1 Mobile operators that support WAP 2.0 and MMS services and applications will be the first to capture the growing contribution to ARPU from these dat原创 2004-07-27 11:36:00 · 1148 阅读 · 0 评论 -
CallAspxPageWithDotNet
// 准备请求... HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(strUrl); myRequest.Method = "POST"; myRequest.ContentType="application/x-www-form-urlencoded"; myRequest.ContentLengt原创 2004-07-24 10:02:00 · 610 阅读 · 0 评论 -
使用WMFL实现可配置Windows窗体
使用WMFL实现可配置Windows窗体 作者: Joe Stegman 翻译:秋枫 原文出处:http://windowsforms.net/articles/wfml.aspx 文章原名: Using the Windows Forms XML Parser Sample 代码下载:下载 Introduction 这里介绍的是个带有可以扩展机制的例子,通过添加一个标记原创 2004-07-22 09:41:00 · 741 阅读 · 0 评论 -
Asp.net程序的Master_page模式
Introduction This article is about detailing processes involved during Framework developments, and as an example, develops a very small framework “Master-Page Framework” using ASP.NET and C#. You will原创 2004-08-03 16:58:00 · 1877 阅读 · 0 评论 -
wap2.0简介
让移动数据更畅更稳的WAP 2.0和WJMS技术 不言而喻,移动商务需要传送无线数据,然而现有无线传送技术的效率和可靠性会越来越难以令用户满意。最近出现的两种无线传送技术崭露头角,能让移动应用更好地适应环境,为移动商务带来新的福音。这两种技术就是无线应用协议(WAP 2.0)和无线Java信息服务(WJMS)。 一、WAP 2.0推陈出新 这个问题先需从第一代的WAP 1原创 2004-07-27 11:40:00 · 2315 阅读 · 0 评论 -
CallAspxPageWithJavaScript
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); // 异步调用 xmlhttp.onreadystatechange = function() { if (xmlhttp.readyState == 4) // 调用完毕 { if (xmlhttp.status == 200) // 加载成原创 2004-07-24 10:03:00 · 609 阅读 · 0 评论 -
从字符串中抽取所有汉字
public string test(string content){ Regex regex=new Regex("[/u4e00-/u9fa5]+"); string str=""; foreach(Match m in Regex.Matches(content)) { str+=m.Value; } return str;}原创 2004-07-05 14:32:00 · 931 阅读 · 0 评论 -
快速理解.NET Framework[翻译]
快速理解.NET Framework 引言 本文着眼于微软.NET框架。这是较新发布的软件开发环境,它帮助开发者快速开发应用程序并且提供各种不同语言像Visual Basic .NET, C#, ASP .NET, 和Jscript .NET等开发最合适的,高效的,可扩展的,面向性能的应用程序 。 .NET框架概述.NET框架是一种新的计算平台,它在Internet高度分布的环境中简化应用程序翻译 2004-06-25 11:40:00 · 752 阅读 · 0 评论 -
同时实现script和.net代码的执行,并保证顺序
以下是.net的代码。 string strFriendID = this.txtBoxReceiver.Text; BusinessRule br = new BusinessRule(); br.RemoveFriend(this.Session["username"].ToString(),strFriendID); this.txtBoxReceiver.Text原创 2004-08-02 11:07:00 · 739 阅读 · 0 评论 -
MattPowell介绍了如何在服务器端使用异步Web方法,来创建高性能的 Microsoft ASP.NET Web 服务
摘要:Matt Powell 介绍了如何在服务器端使用异步 Web 方法,来创建高性能的 Microsoft ASP.NET Web 服务。 简介 在九月份的第三篇专栏(英文)中,我谈到了利用 Microsoft? .NET Framework 的客户端功能通过 HTTP 异步调用 Web 服务的问题。这种调用 Web 服务的方法非常有用,使用时不必锁定您的应用程序或产生过多后台线程。现在我原创 2004-08-02 11:30:00 · 950 阅读 · 0 评论