.NET news » Search results

Search results for query "Control" (238):

DropDownList with OptionGroup

ASP.NET DropDownList render custom control with OptionGroup feature.
2008-06-04 07:21:00   Source: DropDownList with OptionGroup   Tags: ASP.NET

VDialog (Vista TaskDialog for Windows XP)

Vista-like TaskDialog control for .NET Framework 2.0, compatible with Windows XP
2008-04-08 12:56:00   Source: VDialog (Vista TaskDialog for Windows XP)   Tags: GUI VB.NET

ASP.NET - Password Strength Indicator using jQuery and XML

ASP.NET Password Strength Indicator somewhat similar to AJAX PasswordStrength extender control behavior and implemented by using jQuery and XML.
2011-01-19 23:53:00   Source: ASP.NET - Password Strength Indicator using jQuery and XML   Tags: Ajax

A ToolTip with title, multiline contents, and image.

A tooltip to display separate title, contents, and image of each control, and enable for custom shaped.
2010-08-04 00:02:00   Source: A ToolTip with title, multiline contents, and image.   Tags: Components

Developing an Autofilter ListView

Microsoft Excel has a very useful auto-filter function. With this function enabled on a column, the user is able to select filters from a drop-down list, which when selected, are applied to the column. This article describes how to add similar filter functionality to the WPF ListView control.
2008-07-08 07:50:00   Source: Developing an Autofilter ListView   Tags: Components GUI

Persisting Page State in ASP.NET 2.0

Page state, commonly referred to as view state, is persisted in a hidden form field, by default. When a page is being rendered, any programmatic changes to a control's state is saved to the page's overall view state. During the rendering stage, this view state is serialized into a base-64 encoded hidden form field and sent down to the client's browser. On postback, the view state data is sent back to the web server, where it is deserialized and returned to the appropriate Web controls in control hierarchy so that they may re-establish their state as it was prior to the postback.

View state provides a slick way to remember state in a stateless client-server model and it happens underneath the covers without any extra effort from page developers. The downside of view state, however, is that in certain situations the view state can grow to be exceedingly large. A large view state requires a longer page download time since it bloats the total web page size and also affects the postback time, since the entire view state content must be posted back to the web server along with the other form fields.

It is possible, however, to persist view state to an alternate medium. Such customizations were possible in ASP.NET 1.x by overriding a couple of methods in the Page class. ASP.NET 2.0 makes customizing page state persistence easier as this logic is handled through a separate class. In this article we'll explore the built-in page state persistence options in ASP.NET 2.0, which includes the ability to persist page state to session state rather than through a hidden form field.

2007-01-16 18:00:00   Source: Persisting Page State in ASP.NET 2.0   Tags: ASP.NET

WPF/xaml NotifyIcon and Taskbar (system tray) popup window

Integrating WPF and XAML with the windows forms NotifyIcon control to produce a slick, styled popup window when the mouse is moved over the NotifyIcon

A Silverlight custom control for zooming and panning with a small window to see he image with thumb

Zooming and panning an image in a Silverlight application.
2011-03-15 09:02:00   Source: A Silverlight custom control for...   Tags: Components

Forecast: Cloudy: Cloud Services Mashup

Learn how to combine multiple cloud services into a single app, taking advantage of services offered by Windows Azure, Windows Azure AppFabric Access Control, Bing Maps and Facebook.
2011-03-02 18:00:00   Source: Forecast: Cloudy: Cloud Services Mashup   Tags: Components

Extending the ImageBox component to display the contents of a PDF file using C#

In this article, I'll describe how to extend the ImageBox control discussed in earlier articles to be able to display PDF files with the help of the GhostScript library and the conversion library described in the previous article.Getting StartedYou can download the source code used in this article f
2012-01-20 16:24:00   Source: Extending the ImageBox component to display the contents...   Tags: C#