ASP.NET News from Blogger:
Mihir Solankis .NET Journal
Total News: 18
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...
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...
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
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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 ...
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...
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