| A POP3 Client and C# |
| C#Today |
| In this article, Levent Camlibel looks at how to create a POP3 client that recieves e-mail from a POP3 server, showing how the .NET platform allows this project to be created in a very short space of time. Over the course of the article, he looks at POP3 standards, .NET network programming, and custom POP3 objects. |
|
| Client/Server-side ASP.NET Credit Card Validation Control |
| The Code Project |
| Article discussing new version of ASP.NET Credit Card Validator, including both server and client-side checks and VS.NET designer support. |
|
| Client/Server-side ASP.NET Credit Card Validation Control |
| The Code Project |
| Article discussing new version of ASP.NET Credit Card Validator, including both server and client-side checks and VS.NET designer support. |
|
| Create a DotNet TCP/IP Client Class Using Asynchronous Delegates |
| STANDARDIO.ORG |
| In this article, I will demonstrate how manage a DotNet client connection to a TCPIP address and port. All of the necessary components are located under the System.Net.Sockets namespace. We will use the TCPClient and NetworkStream classes to accomplish the task. |
|
| Creating a Multi-User TCP Chat Application |
| MSDN |
| The .NET support for socket-based programming within Visual Basic is dramatically improved over what we had in Visual Basic 6. So even though we approach the programming issue somewhat differently, it is worth it due to all the new capabilities at our disposal. |
|
| Detecting File Encodings in .NET |
| DevHood |
| So you need to read data from a text file, or possibly even a binary file? Do you need to read one byte or two for character arrays, a.k.a. strings? This is a common problem with anything file I/O operations today, especially since the de facto file encoding is Unicode these days, but applications must usually be able to work with older file formats and encodings, which are probably still ASCII files. You need a way to detect what the file encoding is, or leave it to the user to decide (and we all know how well that works!). This tutorial will cover basic detection routines and give you some sample code that you can use in your applications to (usually) detect what the file encoding is.
|
|
| How to automate Internet Explorer to post form data by using Visual C++ .NET |
| Microsoft Support |
| (815722) - An automation controller, such as Microsoft Visual C++ .NET, can automate Microsoft Internet Explorer to use the POST method to send data to an HTTP server computer such as a computer that is running Microsoft Internet Information Services (IIS). This... |
|
| How to automate Internet Explorer to post form data by using Visual C++ .NET |
| http://www.kbalertz.com/ |
| (815722) - An automation controller, such as Microsoft Visual C++ .NET, can automate Microsoft Internet Explorer to use the POST method to send data to an HTTP server computer such as a computer that is running Microsoft Internet Information Services (IIS). This... |
|
| HOW TO: Compute and compare hash values by using Visual C++ .NET |
| Microsoft Support |
| (815656) - This step-by-step article describes how to obtain a hash value and how to compare two hash values to check whether they are identical. back to the top Requirements The following list outlines the recommended hardware, software, network infrastructure,... |
|
| HOW TO: Load and Save XML by Using DOM in .NET Framework with Visual C# .NET |
| http://www.kbalertz.com/ |
| (317662) - Use this step-by-step guide to learn how to programmatically load and save Extensible Markup Language (XML) documents by using the System.Xml.XmlDocument class. This class is compliant with the World Wide Web Consortium Document Object Model (DOM)... |
|
| Introduction to TCP client server in C# |
| The Code Project |
| This is a simple implementation of a TCP client server relationship. |
|
| Late-Binding DLL's in C# |
| The Code Project |
| Creating plug-in DLL libraries for use in C# applications. |
|
| Managing a Music Collection Using Visual Basic Express and SQL Server Express |
| MSDN |
| Build a music collection management application using Visual Basic 2005 Express and SQL Server 2005 Express. |
|
| Manipulating Binary File Data |
| C#Today |
| In one of Dot Net Guruhew Reynolds earlier articles, he showed us how we can save and load document data to a file. This data was stored in a binary format that mimics the way your computer stores the data in memory. This can be easily achieved in .NET, providing that we understand how data is stored within the file. What we havent seen is how to manipulate data that is in a specific format, but where that format is not designed by us or stored in a binary format. In this article, Dot Net Guruhew shows us how we can use various classes in the Framework to read binary data directly from a very popular file format: MP3. |
|
| NatMonitor PocketPC Text client |
| The Code Project |
| This is a client for NatMonitor daemon |
|
| Networking Support Provided by the .NET Framework |
| C#Today |
| The .NET Framework provides a wide range of excellent features that developers can take advantage in building networking applications. The System.Net classes are similar to Microsoft's WinInet API (used for internet protocol programming), in that they allow applications to get and send data using Internet protocols. |
|
| Read POP3 Email with ASP.NET |
| ASP Alliance |
| Just recently I was sent an email with attachments totalling 28mb to my home dialup email account. While I was telnetting into my account to delete the offending email I was inspired to write this article showing how you might do the same thing in code! |
|
| 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. |
|