.NET
quou2002
这个作者很懒,什么都没留下…
展开
-
Using Nullable Types in C#
Bradley Jones August 15, 2005 With the newest standard for the C# language, there is now support for nullable data types. This small change could be a huge help for those who deal with databases conta转载 2005-08-18 09:58:00 · 934 阅读 · 0 评论 -
Some Cool Tips for .NET(.net技巧集)
原文地址:http://www.codeproject.com/useritems/tips.asp#xx1371061xxIntroductionThese are some tips for commonly faced problems in .NET . Some of these tips are mine and some of these i have got from转载 2006-03-21 16:05:00 · 3955 阅读 · 0 评论 -
Check if a string value is numeric
原文地址: http://www.codeproject.com/useritems/IsNumeric.asp public bool isNumeric(string val, System.Globalization.NumberStyles NumberStyle){ Double result; return Double.TryParse(val,NumberStyle转载 2006-03-21 14:02:00 · 2757 阅读 · 0 评论 -
ASP.NET程序中常用的三十三种代码
1. 打开新的窗口并传送参数: 传送参数:response.write("<script>window.open(’*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"’)</script>") 接收参数:string a = Request.QueryString("id");string b = Request.QuerySt转载 2006-02-12 17:05:00 · 1276 阅读 · 1 评论 -
品味SQL Server 2005的几个新功能
来源: 博客园 SQL Server 2005相对于SQL Server 2000改进很大,有些还是非常实用的。举几个例子来简单说明 这些例子我引用了Northwind库。 1. TOP 表达式 SQL Server 2000的TOP是个固定值,是不是觉得不爽,现在改进了。 --前n名的订单 declare @n int set @n = 10 select TOP(@n)转载 2006-02-12 17:14:00 · 916 阅读 · 0 评论 -
ASP.NET 2.0 的内部变化
ASP.NET 2.0 的内部变化 发布日期: 11/2/2004 | 更新日期: 11/2/2004Jayesh Patel、Bryan Acker 和 Robert McGovernInfusion Development适用范围:Microsoft ASP.NET 2.0摘要:尽管 ASP.NET 2.0 与 ASP.NET 1.1 完全向后兼容,但还是为 A转载 2006-03-04 12:52:00 · 1118 阅读 · 0 评论 -
创建动态数据输入用户界面
show toc欢迎来到 MSDN > Web/服务创建动态数据输入用户界面 发转载 2006-03-04 12:19:00 · 1501 阅读 · 0 评论 -
两个项目中如何共享Session
微软技术中心: 感谢您使用微软产品。 这个问题可能是小组开发的时候经常考虑的问题。把项目分割为多个project, 方便了设计和调试。但是我们无法共享Session/Application变量。 关于这个问题,建议您参阅下面的方法: 注意:下文中假设您在使用VS.NET做Web开发。 1。 打开IIS管理台,将您的两个项目删除。假设为Module1和Module2. 2。转载 2006-03-30 11:40:00 · 5275 阅读 · 0 评论 -
C#字符串操纵总结
1.获得汉字的区位码 byte[] array = new byte[2]; array = System.Text.Encoding.Default.GetBytes("啊"); int i1 = (short)(array[0] - /0); int i2 = (short)(array[1] - /0);2.unicode解码方式下的汉字码 array转载 2006-11-15 10:23:00 · 2746 阅读 · 0 评论 -
ASP.NET 2.0 本地化功能:本地化 Web 应用程序的新方法
Michèle Leroux BustamanteIDesign Inc适用于:Microsoft ASP.NET 2.0Microsoft Visual Studio .NETMicrosoft Visual Studio 2005本地化摘要:随着越来越多的公司拓展海外业务,通过 Microsoft ASP.NET 创建全球化的 Web 应用程序显得日益重要。ASP.NET 1.1转载 2006-01-19 15:43:00 · 976 阅读 · 0 评论 -
How To Create GenericPrincipal Objects with Forms Authentication
How To Create GenericPrincipal Objects with Forms AuthenticationView all Security Guidance Topics Microsoft CorporationJanuary 2004ObjectivesUse this module to: Create a Web application that uses Form转载 2005-12-24 14:48:00 · 1969 阅读 · 0 评论 -
Invoke methods using System.Reflection
Introduction.NET provides mechnisms to compile source code and to use the generated assemblies within an application. Using these features you can make applications more adaptive and more flexible.The转载 2005-12-22 09:19:00 · 1074 阅读 · 0 评论 -
用ADSI控制IIS创建网站, 虚拟目录…… (C#)
三个文件:/**/////////FileName: hostservice.cs//////////////////////////////////////////////////////////////////////////////////////////////////using System;using System.Data;using Wooyea.WebSite.Modules.H转载 2005-08-23 09:15:00 · 993 阅读 · 0 评论 -
提取网页中链接和标题的正则表达式
StreamReader sr = new StreamReader("c://sina.htm",System.Text.Encoding.Default);string strHtml = sr.ReadToEnd();string p [^""]*)""|(?[^]*)|(?[^/>^/s]+)).*/>(?[^/]*)/=@"/[^""]*)""|(?[^]*)|(?[^/>^转载 2005-08-19 08:57:00 · 1741 阅读 · 0 评论 -
New Features in C# 3.0
The C# language is standardized through ECMA International. This allows for a standardization of the language without the fear of one company controlling it. Said another way, C# is a non-proprietary转载 2005-08-18 09:59:00 · 734 阅读 · 0 评论 -
重载Equals
首先你必须了解Equals方法的作用。默认的Object.Equals方法是比较两个应用是否指向同一对象:class A{ public int a; }A a1 = new A ();a1.a = 10;A a2 = new A ();a2.a = 10;这时,a1.Equals (a2)为False。默认的ValueType.Equals方法是比较两个struct对象数据结构是否相同: st转载 2005-08-18 10:00:00 · 1141 阅读 · 0 评论 -
ref,out,params参数的理解
using System;namespace WinFormTest{/// /// Class1 的摘要说明。 /// 本代码演示了ref,out和params关键字在函数参数传递中的作用 /// class Class1 { /// /// 应用程序的主入口点。 /// [STAThread] static void Main(string[] args) { int i转载 2005-08-18 10:01:00 · 780 阅读 · 0 评论 -
C#中接口(interface)的理解--接口概念的理解
C#中的接口同COM有也相似的地方,比如1。都是“虚的”---不能被实例化,这也是接口中为什么不能包含字段--成员变量的原因(很简单,成员变量只能属于类的示例,而且C#规定变量在使用前必须初始化,这同接口的“虚”的性质矛盾)。2。正因为接口是虚的,所以接口内的索引,属性,时间等只能有声明,而不能在接口内实现,具体如何实现是派生接口或者派生类的事。3。都具有模板的性质,如果一个接口或者类从某一个接口转载 2005-08-18 10:02:00 · 7787 阅读 · 0 评论 -
C#中接口多重继承的注意事项
经常,一个类会实现多个接口,比如用户的一个控件继承自"IEdit"和"ICombo",每个接口无疑都有一个Paint方法来供子类实现如何画他们,但是多重继承就会出现问题,默认情况下,C#止允许实现Paint方法。现在有一个比较钻牛角尖的问题,如何在派生的类里面实现这两个接口的相同名称的方法呢?通过试验,翻阅MSDN,我总结了这么几条规律:本文可参考 MSDN 配合理解1。要么只实现一个方法,否则函转载 2005-08-18 10:02:00 · 2930 阅读 · 0 评论 -
Ajax:让我们重返静态页面
这个标题是一个小小的玩笑,但是确实道出了Ajax的含义; Ajax不是一种新的技术,而是传统技术加以组合后的技术应用,它带给访问者完全不同的浏览感受:我们再也不需要一次又一次地在提交表单以后等待或者主动刷新网页,传统的动态网页技术被隐藏到了Ajax的后台,我们所看到的是一个静态页面,动态程序反馈的结果被直接无刷新地显示在这个页面上; 这听上去确实很像是在经历了静态页面、动态页面之后,我转载 2005-08-22 11:07:00 · 982 阅读 · 0 评论 -
关于EF4里的 “关系”删除行为的解释
关于EF4里,对于拥有外键约束的实体,删除操作的行为及解释!(因为是翻墙找到的文章,所以复制过来方便大家查阅。)[ 自己的总结:在master-detail结构的表处理时,例如下面例3的Order-OrderDetail,如果从某一个Order实体的OrderDetail集合转载 2011-09-02 11:51:52 · 7122 阅读 · 0 评论