Posts Tagged ‘.NET’

Fill a pair of data (text and value) to ComboBox .NET 2.0 Windows Application

In .NET 2.0 Windows Application, It is not easy to fill a pair of data (text, value) to a ComboBox, Most of examples just introduced the Display member and value member: comboBox1.DisplayMember = “Desc”; comboBox1.ValueMember = “Code”; comboBox1.DataSource = dt; Now let us don’t use DataSource and DisplayMember way: class CmdPairClass { private string _cmdLongStr; [...]

Leave a Comment

Public, Private, Protected and Internal in C#

Access Modifiers (from: http://msdn.microsoft.com/en-us/library/ms173121.aspx) All types and type members have an accessibility level, which controls whether they can be used from other code in your assembly or other assemblies. You specify the accessibility of a type or member when you declare it by using one of these access modifiers: public The type or member can [...]

Leave a Comment

Data Access in ASP.NET 2.0

Collect some links about data access in ASP.NET 2.0: 1: ASP.NET 2.0 中的数据访问 (Chinese); 2: Working with Data in ASP.NET 2.0 ; 3: Data Access in ASP.NET 2.0 (Video);

Leave a Comment

LINQ and 3-Tiers (LINQ和三层结构)

When the new thing in .NET 3.0/3.5 – LINQ came, I was confused by it to build N-Tiers structures for a ASP.NET application. We have LINQ, how we can get 3-tiers? Today I found there are more and more articles which discussing this topic – How N-Tiers with LINQ ? Here is a good article [...]

Leave a Comment

The differences between Windows SharePoint Services v3.0 and Microsoft Office SharePoint Server 2007 (WSS 和 MOSS 的区别)

Simply to compare Windows SharePoint Services V3.0 (WSS) and Microsoft Office SharePoint Server 2007 (MOSS or SS), WSS is free to download, MOSS is a Microsoft’s product which Microsoft sell. In short, MOSS is a huge advantage. WSS has only part of features and functions which MOSS has. related links:1: http://blogs.technet.com/steve_lamb/archive/2007/07/13/what-s-the-difference-between-windows-sharepoint-services-and-office-sharepoint-server-2007.aspx2: Which SharePoint technology is [...]

Leave a Comment

.Net Micro Framework v3.0 SDK beta available!

The .NET Micro Framework v3.0 SDK beta was available in July 28, 2008. You can find it the Microsoft Connect website (http://connect.microsoft.com/netmf). Simply fill out a short survey and you have full access to the downloads, newsgroup, and feedback. Due to the blog post from .Net Micro Framework Team blog. The v3.0 of .NET MF [...]

Leave a Comment

SharePoint: My first research

My pre-research for Share point: 1: My real personal experience of using Sharepoint: I ever worked in a .NET web project team for an American company, the very interesting thing is each team member worked in their own home, we just had few meeting time to ask every team member meet in a place. Actually, [...]

Leave a Comment

Open Visual Studio 2008 project file in Visual Studio 2005 ?

We know the Microsoft Visual Studio IDE Higher version can open the project which created in lower version by convert wizard steps. For example, whey you try to open a VS 2005 project in VS 2008, you will see a convert wizard windows firstly, it helps you convert old project to new project which can [...]

Comments (1)