| ASP.NET DataGrid Paging Part 1 - Built-In Paging |
| DotNetJunkies |
| In this article Doug Seven introduces you to paging data with the DataGrid using the built-in paging capabilities. This article uses Visual Basic .NET and SQL Server 2000. |
|
| ASP.NET DataGrid Paging Part 2 - Custom Paging |
| DotNetJunkies |
| In this article Doug Seven shows you how to use the DataGrid custom paging feature. The code is in C# and it uses stored procedures in SQL Server 2000. |
|
| ASP.NET Developer's Cookbook Chapter 3: Custom Controls |
| The Code Project |
| The most common techniques in building custom controls in ASP.NET. |
|
| ASP.NET DropDownList with XML Databinding |
| Egg Head Cafe |
| I read the MS newsgroups as often as I can, not only to get (hopefully) answers to my own questions, but also to share ideas and get ideas of my own on how to solve programming problems. Recently I answered somebody's post on microsoft.public.dotnet.xml about how to use databinding from an XML file to populate an ASP.NET DropDownList server control. |
|
| 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 Image Manipulation Examples: Adding, Zooming, Enlarging |
| The Code Project |
| .NET image manipulation examples, as an ASP.NET Project. Good application-savvy effects. |
|
| ASP.NET Letter Paging Based on Data Content |
| The Code Project |
| Paged table data display in DataGrid by selecting letter from a letter list which is derived from existing data. |
|
| ASP.NET Localization Part 1: CultureInfo |
| DotNetJunkies |
| The .NET Framework provides built-in mechanisms for localizing applications. ASP.NET internally uses Unicode and the String class of the .NET Framework also uses Unicode. The use of Unicode enables you to easily specify different encoding types for the response data sent to the client. While the .NET Framework will not translate your documents from the language they are written in to a different language, the built-in mechanisms will reconfigure output such as DateTime objects to their appropriate format. |
|
| ASP.NET Process Killer |
| Egg Head Cafe |
| Not long ago, I posted a Code Snippet here to show how to use ASP.NET to kill a running process on a remote webserver. It turns out that System.Diagnostics is uniquely suited to handle stuff like this. In fact, I found it so useful that I've revised the original code to bring all the running processes into an ASP:DropDownList control and DataBind the control from the ArrayList that the processes were stored in.
|
|
| 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. |
|
| ASP.NET Server Controls: Treeview |
| Egg Head Cafe |
| Microsoft has also released ASP.NET Server Control versions of the most popular IE controls, namely Treeview, TabStrip, ToolBar and MultiPage. These are all fully .NET compliant server-side controls. They are also, however, "Browser aware", and if the browser is "uplevel" (IE 5.5 or higher) the associated Client-side HTC behavior for each control is automatically downloaded with the page. |
|
| ASP.NET State Management using C# |
| The Code Project |
| ASP.NET State Management using C# |
|
| ASP.NET User Controls - Notify One Control Of Changes In Other Control |
| The Code Project |
| A tutorial on how to use delegate model to notify one ASP.NET user control of changes in the other user control. |
|
| ASP.NET Validation Controls |
| DotNetJunkies |
| Input validation can be a tricky thing. Ideally we should validate the data on the client side to prevent unnecessary round trips to the server. That requires JavaScript. But not every browser out there processes JavaScript (hard to believe, isn't it). And even still, changing the display characteristics to show errors in the input is not always supported. Not to mention, a slightly unethical person could recreate your page, and bypass the validation all together. Ugh! This leaves us with server-side valida |
|
| ASP.NET Validation Pt. II: Client-Side |
| http://aspalliance.com/ |
| In PART I, we discussed how to implement server-side validation in ASP.NET. Now we will
conclude our discussion with how to implement validation for the client side. |
|
| ASP.NET Web Service |
| The Code Project |
| We can now use ASP.NET to create Web Service that is based on industrial standards included XML, SOAP and WSDL. This is a basic introduction to building Web services. |
|
| ASP.NET/COBOL.NET Database Access Example |
| ASP Alliance |
| One of the features of the .NET framework is its ability to handle multiple languages. Third party compiler vendors can create and implement a compiler targeted for the .NET runtime. In fact, over the course of the next year, you can expect to see some 28 languages ported to the .NET runtime. This will allow companies with a huge codebase in a "non-Microsoft language" to continue building onto their investment. |
|
| Audio-Video Module for ASP.net Community Starter K |
| http://www.paul-abraham.com/ |
| Audio-Video Module for ASP.net Community Starter K |
|
| Authenticate Web Service Client |
| C# Corner |
| This client application shows you how to access Authenticate Web service. |
|
| 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. |
|
| Automated Generation of Table Columns, Class Properties, and Form Field Mapping with C# Reflection |
| C#Today |
| In this article, Tin Lam shows how to use reflection to help us with complex mappings. Reflection allows us to examine assemblies and types at runtime, and find out everything about that type. We will also see how to dynamically extract the type information, and then carry out automated mappings between database table columns, HTML form fields and class properties. |
|
| Automatic Generated DataGrid Commands |
| C# Corner |
|
|
| Avoid This Web Services Gotcha |
| Visual Studio Magazine |
| When they first use Web Services, many developers begin to think of innovative ways to use them in an asynchronous fashion. There is one big "gotcha," however, that most developers will hit the first time they try this. When using with Web Services, you have to realize that when code is executing in your callback, you are likely to be on a different thread than your user interface code. |
|