Posts Tagged ‘.NET’

Microsoft Mobile Device Browse File and dotMobi DeviceAtlas

I got a open source project which I think it is supporting by Microsoft and / or dotMobi. the project name is Mobile Device Browse File or Mobile Browser Definition File. Actually I knew dotMobi Inc. has a similar project named dotMobi™ DeviceAtlas™, I don’t know what the differences between these 2 projects, or they [...]

Comments (2)

Mobile Web Forms in Visual Studio 2008 and 2005

After you install SP1 for Visual Studio 2005 or you are using Visual Studio 2008, you will see that you can not find Mobile Web Forms which you can see in Visual Studio 2003.
The reason is from Microsoft development team. They made the Mobile Web Form Templates a separate package and you need to download [...]

Comments (1)

Data import / export with SQL Server Express

There is a good guide here: Data import / export with SQL Server Express using DTS Wizard
Wish a help!

Leave a Comment

How to add a Uninstall option in Visual Studio Setup project without writing code

Using Visual Studio 2005/2008, you don’t need to write any code to add a uninstall option for a Setup project (Yes I know some people can write code to do it)
1) In the Setup Project –> File System windows –> Right Click “File System on Target machine” –> add a Special Folder, select System Folder;
2) [...]

Comments (3)

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 [...]

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 [...]

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