| FlashMovie WebControl |
| The Code Project |
| A custom webcontrol enhancing the ability to easily add a macromedia flash movie to your webforms |
|
| Flight Log Book |
| The Code Project |
| Log Book for Flight Planner |
|
| Form Viewstate |
| ASP 101 |
| Up till now, it's been pretty easy to decide what topicI should cover next as I've been writing these lessons.This week the choice was a little more difficult. You seeI want to get you into some of the really cool stuff, butI don't want to get you lost along the way. This week's topicis not exciting, flashy, or sexy, and as a result, it's something that mostbooks and web sites I've seen have sort of glossed over. Well that'sreally too bad, because it's an important topic to understand and for manyusers (especially those transitioning from previous versions of ASP), it'sprobably the feature that will save them the most coding. |
|
| Formatting for Dummies... |
| DotNetJunkies |
| This "Organic" article give you a quick reference guide to formatting strings. It demonstrates formatting strings into decimals, percentages, dates and much more. Please email me (link in article) if you see one I'm missing or something you are in need of |
|
| Forms Authentication Against An XML File |
| ORCS Web |
| This code shows how to validate against an XML file for Forms Authentication security in ASP.Net. Please read one of the earlier articles on Forms Authentication for an introduction and to see the required settings in the web.config file. The code below is just a modification of the login.aspx page. |
|
| FTP Windows Forms Client, using Managed Assembly |
| The Code Project |
| This is a FTP downloading Winform application utilizing Indy.Sockets.dll. |
|
| Gausian and Alpha Blurring |
| The Code Project |
| Step by step instructions and theory |
|
| GDI+ in Managed C++ |
| The Code Project |
| This Sample demonstrates basic drawing techniques using GDI+ in a Managed C++ application. The application implements a control which acts as a ticker which scrolls text across a window at a constant speed. The Client can control the scroll speed (how often ticker moves), the scroll smoothness (how many pixels it moves in one step), and the text to display. |
|
| Generate PDF documents from a HTML page using ASP.NET |
| The Code Project |
| Convert HTML to PDF from an ASPX page. |
|
| Global Error Handling in ASP.NET |
| The Code Project |
| An article on how to gracefully trap application errors in asp.net applications |
|
| Global Exception Handling with ASP.NET |
| http://webdeveloper.earthweb.com/ |
| You can't debug a problem if you don't know that it exists. After you take your web application live, you are no longer the only one who is using it (hopefully), so you need an effective plan to track exceptions when they occur while others are surfing your site. A great way to do this is to implement an exception handler at the application level. This will allow you to consolidate the logging and notification parts of your exception handling in one convenient place. As you'll see from the code examples that follow, your global exception handler can handle both specific exceptions that you trap in your code and generic unhandled exceptions. |
|
| Global Web Application Level Error Reporting |
| Master C# |
| As a web master of any web site it becomes of primary importance for you to know of any error that occurs in your Web Application. Even though good design practice calls for Error Handling within the application itself, still there could many un-handled errors and exceptions occurring within your web applications spoiling your clients experience. |
|
| Globalization in C# |
| C#Today |
| As application designers, we should strive to make sure our applications are as usable as possible, irrespective of where in the world the user resides. Win32 developers have long had access to functions that allow them to properly represent dates, currency values, and so on. Its important that whenever we have to show the user dates, times, monetary values, or numbers, we use the globalization features in .NET. These features use the globalization settings in Windows to properly format these values into strings for display. In this article, Matthew Reynolds looks at the basics of properly formatting dates, times and numbers for display. In the second part of the discussion, he looks at how we can build a Windows Form that can alter the text on the controls depending on the users settings. |
|
| Globalized Property Grid |
| C# Corner |
| The property grid is a nice control to display properties and values. You create an instance of your class and assign it to the property grid. By using reflection a property grid extracts the properties of the class and displays its values. Usually you meet some more requirements: It would be nice if there is a user friendly name displayed which may differ from the property member names used for the class. Or the property name needs to be displayed in a different language. Or if international software is required at all we need to display property names in more than one language. Maybe with switching between the languages at runtime. |
|
| Graphics Programming in C# |
| C# Corner |
| Like Java, C# provides us with a rich set of classes, methods and events for developing applications with graphical capabilities. Since there is not much theory involved, we can straight away jump to an interesting example (Listing - 1), which prints "Welcome to C#" on a form. |
|
| Handling Client Files in ASP.NET Whidbey |
| MSDN |
| Understand the technical issues involved when working with resource files with ASP.NET 1.x, and see how this will improve with ASP.NET Whidbey. |
|
| Handling Custom File Downloads in ASP.NET With Server Controls |
| Egg Head Cafe |
| Recently on the microsoft.public.dotnet.framework.aspnet newsgroup, I responded to somebody's post about having a corrupted file when using a control to create a download function (like the right hand click) which is called when the user clicks a button. He gave some code which reads a file into a buffer and sends the buffer to the browser, but said the file which was downloaded was corrupt. |
|
| Handling DataGrid Events |
| ASP Alliance |
| When a DataGrid starts up (you run the page), several events are fired at certain times, these events give you the opportunity to do some extra coding to change the DataGrid. |
|
| Handling Events In C# |
| C# Help |
|
|
| Handling Events in Programatically Created DataGrids |
| DotNetJunkies |
| This HowTo shows you the code to build DataGrids programmatically and handle the DataGrid.ItemCommand event. The code download is available in both C# and Visual Basic .NET. |
|
| Handling events of child controls inside a DataGrid |
| The Code Project |
| How to hook up on an event of a web control residing inside a DataGrid cell. |
|
| Handling events of child controls inside a DataGrid |
| The Code Project |
| How to hook up on a event of a web control residing inside a datagrid cell. |
|
| Handling Multiple Views on a Common Data Set |
| The Code Project |
| This document is designed to look at some of the problems associated with multiple views on a common data set, such as the Document/View architecture found in the MFC class libraries. This is more a "proof-of-concept" study than a full fledged application or tool, used to study different approaches to this topic. |
|
| Handy Type Editors. Universal Dropdown Editor |
| The Code Project |
| Implementing a universal dropdown type editor. |
|
| Hangman: Using GDI+ in ASP.NET Applications |
| C# Corner |
| This example shows how you can combine GDI+ commands on a web form. My example code implements a web page which is the game of hangman written in C#. For those that are not familiar the idea is to answer questions and every time you get one wrong you get closer to being hanged. |
|