| .NET DropDownList Combo |
| ASP Alliance |
| The .NET dropdown list server side control allows positioning within the list by typing the first characters.This method does not require a trip to the server. This dropdown COMBO gives you a text area to type as many characters as you want to match in the list? It's like the Index in Help. Obviously, you wouldn't want a round trip to the server every time you typed a character so it uses client side script to do the positioning. |
|
| Ask the DotNetJunkies: Performance Impacts of Server Controls |
| DotNetJunkies |
| If the validation controls or intrinsic controls post the page back to the server, will it not affect the performance of the pages because huge files have to go back and forth from the client to the server? |
|
| ASP.NET Image Manipulation Examples: Adding, Zooming, Enlarging |
| The Code Project |
| .NET image manipulation examples, as an ASP.NET Project. Good application-savvy effects. |
|
| ASP.NET Server Control - Updown Control |
| The Code Project |
| As the title of the article says, we will attempt to explain the steps for creating a web control and in particluar an up-down control. The functionlaity of this control is same as MFC's Up-Down control and Window Form's System.Windows.Forms.NumericUpDown control. We will try to explain the steps in as much as details as we can. A lot of information is available in .NET framework documentation. It is just how do you apply that information to create a control that can be useful for your day to day operations on the weg pages. |
|
| ASP.NET Server Control Creation |
| C#Today |
| ASP.NET custom server controls provide a powerful architecture for isolating the atomic functionality of applications, using highly reusable compiled components (dll). This makes enforcing application-wide rules and applying composite view design patterns easy. In this article, Daniel Cazzulino will look at numerous facets of these controls, such as extending their functionality. |
|
| Autogeneration of Client-side JavaScript from an ASP.NET User Control |
| DotNetJunkies |
| I was recently tracking down a bug with JavaScript onMouseOut/onMouseOver handlers in my ASP.NET User Controls. In order to rule out one possible problem – images that haven't been downloaded yet – I decided it would be useful to implement image preloading for my ASP.NET ImageButton controls. I've seen the slick way that Macromedia Dreamweaver inserts the MM_preloadImages() function in its authored pages. So, I thought... there must be a way in my ASP.NET pages to do the same thing. After a little bit of research, I found that there was a way, and it was pretty easy to implement. |
|
| Autogeneration of Client-side JavaScript from an ASP.NET User Control |
| DotNetJunkies |
| Kirk decided it would be useful to implement image preloading for my ASP.NET ImageButton controls. He saw the slick way that Macromedia Dreamweaver inserts the MM_preloadImages() function in its authored pages. He found that there was a way to do the same thing in an ASP.NET page. |
|
| DataGrid Foreign Event Handling |
| DotNetJunkies |
| DataGrids seem to be very popular among all ASP.NET developers these days. I've seen whole series of articles and a lot powerful custom controls released for it. I personally think they are great as long as you manage your ViewState size and don't try to think too much outside the box, or grid in this case. Anyhow, one thing that has bothered me is that it isn't easy to wire up events like, OnSelectedItemIndexChange, in template columns containing controls like the RadioButtonList or DropDownList. |
|
| Declarative ASP.NET globalization |
| The Code Project |
| An article on how to implement globalization support for ASP.NET pages through attributes and reflection |
|
| How To Create a Pop-Up Calendar User Web Control |
| DotNetJunkies |
| This How To demonstrates a way to create a pop-up calendar user control and provides an example of how to use the control. Learn to create this basic user control and then you can customize it to fit the specific needs of your project. |
|
| Images on XP-Style Buttons |
| The Code Project |
| A .NET Windows Forms Button using Visual Styles on Windows XP that can display an image |
|
| Introduction to ASP.NET and Web Forms |
| MSDN |
| This article explains how Web forms are fundamental to Microsoft ASP.NET, shows how to build a Web form, and discusses the controls essential for building a Web form. |
|
| Making an ASP.NET Web Site Accessible |
| MSDN |
| Extend ASP.NET classes to make them generate ASP.NET code that is fully accessible to people with disabilities. |
|
| Many in one: ImageButton + MultiSelect TabControl with Drag&Drop and Button's face paint extender |
| The Code Project |
| Small Windows.Forms Controls Library (ImageButton,MultiSelect TabPage Control with Drag&Drop support) |
|
| More and Less: How ASP.NET 2.0 Features Compare Against the Starter Kit Reference Applications |
| MSDN |
| The ASP.NET Starter Kits are five sample ASP.NET applications that provide code to accomplish common Web development tasks. This article looks at how the new features in ASP.NET 2.0 could be used to simplify the Starter Kits. |
|
| Selecting an Item in a DataList using C# |
| ASP Alliance |
| In this article, we will look at a technique that allows us to generate a DataGrid (children data) based on a selection in a DropDownList (parent data). Basically, when an item is selected in the DropDownList, the page is posted back and we run a query to fill the DataGrid. |
|
| Using JavaScript Along with ASP.NET |
| MSDN |
| Leverage JavaScript in your ASP.NET applications to provide client-side functionality such as button roll-overs, control focus and alerts. |
|
| Validating ASP.NET Server Controls |
| MSDN |
| Delve into the ASP.NET validation server controls, and discover how they can help you to ensure that entered data is valid. |
|
| Working with Client-Side Script |
| MSDN |
| While ASP.NET performs most of its processing on the server, some actions are better served by client-side processing. Scott Mitchell shows how your ASP.NET pages and controls can add client-side code. |
|