- 博客(35)
- 收藏
- 关注
原创 Designing Application-Managed Authorization
Designing Application-Managed AuthorizationRelated Linkspatterns and practices IndexChris Schoon, Doug Rees, Edward JezierskiMicrosoft CorporationDecember 2002SummaryThis guide pro
2004-09-06 14:42:00
2933
原创 Exception Management Architecture Guide 2.0
Exception Management Architecture GuideRelated Links patterns and practices IndexApplication Architecture for .NET: Designing Applications and ServicesKenny Jones, Edward Jezierski, Ja
2004-09-06 14:39:00
1402
原创 Exception Management Application Block for .NET
Exception Management Application Block for .NETRelated Linkspatterns and practices Index.NET Architecture CenterApplication Architecture for .NET: Designing Applications and Services
2004-09-06 10:24:00
1249
原创 Designing Data Tier Components and Passing Data Through Tiers
Designing Data Tier Components and Passing Data Through TiersRelated Links patterns and practices Index.NET Architecture CenterApplication Architecture for .NET: Designing Applications
2004-09-06 10:21:00
2314
原创 Configuration Management Application Block for .NET
Configuration Management Application Block for .NETRelated Linkspatterns and practices Index.NET Architecture CenterApplication Architecture for .NET: Designing Applications and ServicesBy
2004-09-03 15:10:00
1786
原创 .NET Data Access Architecture Guide
.NET Data Access Architecture GuideRelated Linkspatterns & practices IndexApplication Architecture for .NET: Designing Applications and ServicesAlex Mackman, Chris Brooks, Steve Busby,
2004-09-02 11:34:00
2420
原创 Data Access Application Block for .NET
Data Access Application Block for .NETChris Brooks, Graeme Malcolm, Alex Mackman, Edward Jezierski, Jason Hogg, Diego Gonzalez (Lagash), Pablo Cibraro (Lagash) and Julian Cantore (Lagash)Mic
2004-09-02 11:16:00
1339
原创 Messaging Patterns in Service-Oriented Architecture, Part 1
Messaging Patterns in Service-Oriented Architecture, Part 1Soumen ChatterjeeCap Gemini Ernst & YoungApril 2004Summary: This first of a two-part series discusses how messaging patterns exis
2004-09-01 09:46:00
1038
原创 Dragging and Dropping DataGrid Columns
Dragging and Dropping DataGrid ColumnsChris SanoMicrosoft CorporationAugust 2004Summary: Learn how to utilize basic GDI functionality to achieve visual effects with the DataGrid control. B
2004-08-30 15:18:00
833
原创 .net调用别人的http页面,返回结果,url中有中文的处理,get和post两种方法
一 get方法。using System;using System.Net;using System.IO;using System.Text;using System.Web;using MSXML2;using System.Threading;namespace Engine.Activity.FeeAgency{ /// /// Summary description of Cl
2004-08-20 17:48:00
2202
3
原创 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
1876
原创 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
原创 同时实现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
原创 Best Practices for Using ADO.NET
Best Practices for Using ADO.NET Dennis LuDoug RothausMicrosoft Corporation July 2002 Applies to: Developers with experience using Microsoft? ADO.NET Microsoft? .NET Framework Summary: Best pra
2004-07-27 14:36:00
1159
原创 wap2.0简介
让移动数据更畅更稳的WAP 2.0和WJMS技术 不言而喻,移动商务需要传送无线数据,然而现有无线传送技术的效率和可靠性会越来越难以令用户满意。最近出现的两种无线传送技术崭露头角,能让移动应用更好地适应环境,为移动商务带来新的福音。这两种技术就是无线应用协议(WAP 2.0)和无线Java信息服务(WJMS)。 一、WAP 2.0推陈出新 这个问题先需从第一代的WAP 1
2004-07-27 11:40:00
2314
原创 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
原创 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
原创 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
原创 Protecting Your Data Integrity with Transactions in ADO.NET
Protecting Your Data Integrity with Transactions in ADO.NET Christa Carpentiere May 2004 Applies to:Microsoft? ADO.NETMicrosoft? .NET Framework Summary: Transactions are a key fe
2004-07-23 15:06:00
1031
原创 Retrieving the Gazoutas: Understanding SQL Server Return Codes and Output Parameters
Retrieving the Gazoutas: Understanding SQL Server Return Codes and Output Parameters William VaughnBeta V Corporation April 2003 Applies to: Microsoft ADO.NET Microsoft SQL Serv
2004-07-23 14:56:00
1014
原创 Walkthrough: Editing an Access Database with ADO.NET
Walkthrough: Editing an Access Database with ADO.NET Martin TracyVisual Studio TeamMicrosoft Corporation June 2003 Applies to: Microsoft? ADO.NET Microsoft? ASP.NET Microso
2004-07-23 14:47:00
777
原创 Writing a Portable Data Access Layer
Writing a Portable Data Access Layer Silvano CorianiMicrosoft Corporation April 2004 Applies to: Microsoft? Visual Studio? .NET 2003 Microsoft? .NET Framework 1.1 ADO.NET Various
2004-07-23 10:42:00
929
原创 Implement a Data Access Layer for Your App with ADO.NET
if( self == top ) { location = "/msdnmag/issues/03/04/DataAccessLayer/TOC.asp"; } var sContentID = "25030406"; var doImage = doImage; var TType = TType; function mhHover(tbl
2004-07-23 09:59:00
1041
原创 使用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
原创 Accessing Microsoft Office Data from .NET Applications
if( self == top ) { location = "/library/en-us/dnadonet/html/odatanet2.asp"; } var sContentID = "_1050822"; var doImage = doImage; var TType = TType; function mhHover(tbl, i
2004-07-21 14:03:00
814
原创 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
原创 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
原创 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
原创 如何从数据表中选择数据
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
原创 从字符串中抽取所有汉字
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
原创 Build Secure Web Services With SOAP Headers and Extensions
Build Secure Web Services With SOAP Headers and ExtensionsRating: Jeff Prosise (view profile)April 17, 2003 Environment: .NET Using SOAP Headers and SOAP Extensions to Build Secure Web Servic
2004-06-29 16:45:00
808
原创 Exception Management Architecture Guide
Related Links patterns and practices Index Application Architecture for .NET: Designing Applications and Services Kenny Jones, Edward Jezierski, Jason Hogg, Roberta Leibovitz (Modeled Computation) a
2004-06-25 12:34:00
1174
原创 Ten things to do with IIS(From CodeProject website)
Introduction As an IIS administrator it sometimes gets downright annoying having to fend off all the insults from Apache admins I meet, claiming innate server superiority. Generally the discussion abo
2004-06-25 12:31:00
662
翻译 快速理解.NET Framework[翻译]
快速理解.NET Framework 引言 本文着眼于微软.NET框架。这是较新发布的软件开发环境,它帮助开发者快速开发应用程序并且提供各种不同语言像Visual Basic .NET, C#, ASP .NET, 和Jscript .NET等开发最合适的,高效的,可扩展的,面向性能的应用程序 。 .NET框架概述.NET框架是一种新的计算平台,它在Internet高度分布的环境中简化应用程序
2004-06-25 11:40:00
752
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人