| Simple MessageBox functionality in ASP.NET |
| The Code Project |
| An article describing how to offer simple MessageBox functionality in ASP.NET |
|
| Simple Paging in Repeater and DataList Controls |
| Master C# |
| Most of the times while creating database driven web pages like product listing, employee directory, etc. we display the data in grid format. ASP.NET has come up with Web Controls like DataGrid, DataList and Repeater that allow you to display your data in tabular format easily. Amongst the above three Web Controls the DataGrid Control is the most advanced and supports paging, templates etc. The other two controls are used in places where you need more control over the rendering of your data. The DataList and Repeater Controls have very flexible templates that give you total control over the formatting of your data, but one of the major drawbacks of these controls is that they do not support paging!!
|
|
| Simple Splash Screens |
| DevHood |
| Splash screens can easily provide a professional look to a program and allow startup code to run in the background. Especially when using web services, it can take time to contact the web service and get an instance of it instantiated. Instead of making the user stare at blank windows until the program is ready, why not show a splash screen with a text display showing the progress? |
|
| Single Sign-On Enterprise Security for Web Applications |
| MSDN |
| Discover a technique for enabling single sign-on for multiple Web applications, and get a head start with sample code for creating a robust enterprise security system complete with single sign-on. |
|
| SMTP E-Mailing Application |
| C# Corner |
| This is an article on how to use the Mail Components in .NET to create a simple application to send e-mail. |
|
| SMTP Email Client |
| C# Help |
| This is a web
based smtp email program. This program can be used to send a email
through a SMTP server. User can specify SMTP server IP, sender's mail
address, recipient's email address and mail content. When the user
clicks on "send mail" button , mail is forwarded to SMTP
server which in turn forwards the mail to recepient. |
|
| SnapFormExtender - a magnet for your MDI child forms |
| The Code Project |
| An extender provider that draws MDI child forms to another form's edges while moving or resizing |
|
| Some Situations Where One May Like to Use MSIL |
| C# Corner |
| One of the most popular techniques for learning IL is writing code in high level language i.e. C# or VB.NET and examining result of compilation in ILDASM. To be honest this is if not the only one then at least part of any other available method for learning IL. |
|
| Sorting a DropDownList by Value |
| DotNetJunkies |
| Loading SortedLists backward gives you the ability to sort by Value rather than Key. In this how to, you'll learn how you can use this trick, along with binding your data backward, to achieve the desired result of having a DropDownList that is sorted by Value. |
|
| Speed Up Web Services With Caching |
| Visual Studio Magazine |
| Web Service execution can take a long time to complete, not to mention consume expensive system services while processing a client request. .NET can optimize your Web Service execution, however, by caching the results of previous invocations. |
|
| Sprite manipulation in C# |
| The Code Project |
| Basic sprite animation, clipping, z-ordering in C# using GDI+. |
|
| Squarified Treemaps in XAML & C# using Microsoft Longhorn |
| The Code Project |
| Data Visualisation using Squarified Treemaps |
|
| Steganography 12 - Regions with different data density |
| The Code Project |
| Define Regions inside an Image to keep smooth colours free from hidden data. |
|
| Sticky Notepad |
| Master C# |
| I am a Java programmer and hence I wanted to experiment with writing a program that would run from the "System Tray" of Windows (that's where you have the date displayed) since that's not possible with pure Java. |
|
| Storing User Information with ASP.NET 2.0 Profiles |
| MSDN |
| Use the new Profile object in ASP.NET 2.0 to track user preferences, create a shopping cart, and more. |
|
| Streaming Dynamic Images into Your Web Page |
| ASP Alliance |
| Using the System.Drawing class allows you to create images on the fly. But how do you get them into a web page? Since the <img> tag requires a path to the image file, you cannot stream the dynamic image into it (in other words, it is not like a picture box on a winform). The following article will show a method for getting the dynamically generated image into your web page. |
|
| String Builder |
| http://www.csharpfriends.com/ |
| In Classic ASP we were accustomed to forming sql strings or any other string by concatenating values using '&' that would sometimes span many lines. A fast and efficient way of performing this same task in C# is so much cleaner and a pleasure to work with. |
|
| Symmetric File Encryption / Decryption |
| Master C# |
| In this example we learn how to use 2 of the Symmetric encryption algorithms namely Data Encryption Standard (DES) and RC2. |
|
| Synchronize Scrolling with Managed Code. |
| The Code Project |
| Scrolling two or more panels with managed code. |
|
| Taking a Bite Out of ASP.NET ViewState |
| MSDN |
| The Web is stateless, and so are ASP.NET Pages. They are instantiated, executed, rendered, and disposed on every round trip to the server. As a Web developer, you can add statefulness using well-known techniques like storing state on the server in Session state or by posting a page back to itself. |
|
| Taking Full Control: Build Your Own Reusable Datalist with VS.NET |
| DotNetJunkies |
| In this article, I will show you how to build a custom control based on the .NET datalist control. This custom control will implement a lot of the functionality discussed in <a href="http://dotnetjunkies.com/Article/B8550E4B-B8F5-4446-B065-0B19F4C739BC.dcik">The Datagrid Revisited: Editing a Live Database in Template Columns</a>. |
|
| Test Tools and Scripts |
| MSDN |
| This article discusses the implementation of Microsoft .NET Passport authentication in the ColdStorage sample Web Service and applications developed to test the service. |
|
| Testing: Perform Code Coverage Analysis with .NET to Ensure Thorough Application Testing |
| MSDN |
| This article presents a complete system for determining how much of your code base you're actually testing. |
|
| Text Box Validation Date Format |
| The Code Project |
| Text Box Validation Date Format |
|
| The @ Page Directive - Inherits vs. Src vs. Codebehind |
| DotNetJunkies |
| OK, there has been enough confusion in the world! In this day and age, with the communication capabilities that exist, there should be no reason for this. So, as the public servant that I am, I resolve to eliminate this confusion. You've probably figured out by now, I am talking about the confusion surronding the ASP.NET @ Page directive attributes. The confusion between Codebehind, Src and Inherits. Well, I am here to put an end to the confusion....spread the word, the answer is here. |
|