.NET news » Search results

Search results for query "net" (410):

Building ASP.NET Validator using Data Annotations

The article describes an implementation of ASP.NET validator that uses the new System.ComponentModel.DataAnnotations assembly that came in .NET 3.5 SP1.
2010-07-28 01:02:00   Source: Building ASP.NET Validator using...   Tags: ASP.NET

Get ASP.NET C# 2.0 Website Thumbnail Screenshot

How to get a Website/URL Thumbnail/Screenshot with C#.NET 2.0 in VS 2005
2010-07-21 15:13:00   Source: Get ASP.NET C# 2.0 Website Thumbnail...   Tags: ASP.NET

Parallel programming in .NET - Internals

.NET 4 brings a powerful Task library to support a piece of code to run in parallel processors. What it does just simply spawns threads into multiple processes using the newly written task libraries (System.Threading.Tasks) in mscorlib 4.0. Task libraries contain methods like For, ForEach and Invok
2010-07-21 14:24:00   Source: Parallel programming in .NET -...   Tags: Performance

gLabel - Custom Label with Special Effects (VB.NET)

Label control with built-in effects like MouseOver, Shadow, Outer Glow, and Pulse Glow

Managing View State in ASP.NET 4 Using the New ViewStateMode Property

The ASP.NET Web Forms model strives to encapsulate the lower level complexities involved in building a web application. Features like server-side event handlers, the page lifecycle, and view state effectively blur the line between the client and the server, simplify state management, and free the developer from worrying about HTTP, requests and responses, and similar matters. While these facets of the Web Forms model allow for rapid application development and make ASP.NET more accessible to developers with a web application background, their behavior can impact your website's behavior and performance.

View state is perhaps the most important - yet most misunderstood - feature of the Web Forms model. In a nutshell, view state is a technique that automatically persists programmatic changes to the Web controls on a page. By default, this state is serialized into a base-64 encoded string and included as a hidden <input> field in the Web Form. On postback, this state information is returned to the server as part of the POST request, at which point the server can deserialize it and reapply the persisted state to the controls in the control hierarchy. (If this last paragraph made crystal clear sense, great! If not, consider reading my article, Understanding ASP.NET View State, and Dave Reed's article, ViewStateMode in ASP.NET 4, before continuing.)

One potential issue with view state is that it can greatly bloat the size of your web pages. Each new version of ASP.NET seems to include new techniques for managing view state's footprint. ASP.NET 4 adds a new property to all Web controls, ViewStateMode, which allows developers to disable view state for a page by default and then selectively enable it for specific controls. This article reviews existing view state-related properties and then delves into the new ViewStateMode property.

2010-07-13 19:00:00   Source: Managing View State in ASP.NET 4...   Tags: Performance

Benchmark start-up and system performance for .Net, Mono, Java and C++ native code

What is the overhead start-up and system performance for .Net, Mono, Java versus C++ native code

Text Box for Currency in VB.Net 2010

This component will be used as a text box for automatically formatted currency values.
2010-07-12 10:01:00   Source: Text Box for Currency in VB.Net 2010   Tags: VB.NET

gTrackBar - A Custom TrackBar UserControl (VB.NET)

TrackBar with custom coloring, value display, label, and increment buttons

Paging in any ASP.NET grid using SQL Server 2005

Implementing paging in any ASP.NET grid using SQL Server 2005.
2010-07-07 23:00:00   Source: Paging in any ASP.NET grid using SQL...   Tags: ASP.NET

Implementing Yahoo! Contact Reader Using Asp.NET

Implementing Yahoo! contact reader app using yahoo contact API and asp.net