ASP.NET News from Blogger: Mihir Solankis .NET Journal   Get the feed of: Mihir Solankis .NET Journal

Total News: 18

Microsoft ASP.NET 3.5 Extensions

Whats in the Extensions Release? ASP.NET MVC ASP.NET MVC provides model-view-controller (MVC) support to the existing ASP.NET 3.5 runtime, which enables developers to more easily take advantage of t...

Orcas 2007 CTP is OUT

Visual Studio code name “Orcas” delivers on Microsoft’s vision of smart client applications by enabling developers to rapidly create connected applications that deliver the highest q...

Visual Studio Code Name "Orcas" CTP is out

Overview Visual Studio Code Name "Orcas" delivers on Microsoft’s vision of smart client applications by enabling developers to rapidly create connected applications that deliver the highest qu...

ADO.NET vNext CTP is out

Ado.NET vNext The ADO.NET Entity Framework, which includes: The Entity Data Model (EDM), which allows developers to model data at a higher level of abstraction A powerful client-views/mapping engi...

.NET Framework FAQ : What Are Nullable Types

Unlike reference types, you cannot assign a null into a value type. This is often a problem when interacting with code that interprets a null as having no value, rather than no-reference. The canonica...

.NET Framework FAQ : What is managed code and managed data

Managed code is code that is written to target the services of the Common Language Runtime (see What is the Common Language Runtime). In order to target these services, the code must provide a minimum...

.NET Framework FAQ : How do I dynamically resolve assemblies, types, and resources

The assembly resolution is controlled by the configuration properties for the application domain such as System.AppDomainSetup.ApplicationBase. The configuration properties may not be sufficient in so...

.NET Framework FAQ : What is the difference between a Struct and a Class

The struct type is suitable for representing lightweight objects such as Point, Rectangle, and Color. Although it is possible to represent a point as a class, a struct is more efficient in some scenar...

ADO.NET FAQ : Which are the different Transaction Isolation Levels

Following are the various IsolationLevels: Serialized: Data read by a current transaction cannot be changed by another transaction until the current transaction finishes. No new data can be inserted t...

CSharp FAQ : What's New in the C# 2.0 Language and Compiler

With the release of Visual Studio 2005, the C# language has been updated to version 2.0, which supports the following new features: GenericsGeneric types are added to the language to enable programmer...

.NET Framework FAQ : How are Generics implemented

Generics have native support in IL and the CLR itself. When you compile generic server-side code, the compiler compiles it into IL, just like any other type. However, the IL only contains parameters o...

ASP.NET FAQ : Themes vs. Cascading Style Sheets

A theme is a collection of property settings that allow you to define the look of pages and controls, and then apply the look consistently across pages in a Web application, across an entire Web appli...

ASP.NET FAQ : Does ASP.NET support server-side object tags

Yes. The following tag creates an instance of a custom type named ShoppingCart and assigns it session scope (that is, it creates a unique ShoppingCart instance for each and every session created on th...

ASP.NET FAQ : How can I provide a default value for a password TextBox

When a TextBox control has its TextMode property set to Password, you cannot assign a default value to the control using the standard Text property. In order to assign a default value, you need to use...

SQL Server FAQ : How to join tables from different servers

To be able to join tables between two SQL Servers, first you have to link them. After the linked servers are setup, you just have to prefix your tables names with server name, database name, table own...

.NET Framework FAQ : What is Partial Assembly References

Full Assembly reference: A full assembly reference includes the assembly's text name, version, culture, and public key token (if the assembly has a strong name). A full assembly reference is required ...

.NET Framework FAQ : What is the Common Language Runtime (CLR)

The Common Language Runtime is the execution engine for .NET Framework applications. It provides a number of services, including the following: Code management (loading and execution) Application m...

.NET Framework FAQ : What is an Application Domain (AppDomain)

An AppDomain can be thought of as a lightweight process. Multiple AppDomains can exist inside a Win32 process. The primary purpose of the AppDomain is to isolate applications from each other, and so i...

View Other bloggers