.NET news » Internet Internet Rss Feed

download
Create Your Own Mailing List Server with .NET 2.0
Learn how to build your own mailing list server, making use of the new classes located in the System.Net.Mail namespace in .NET 2.0, as well as some techniques to retrieve emails from Outlook.
7 Nov 2007, 00:38:38   Source: Create Your Own Mailing List Server with .NET 2.0   Tags: Internet Examples
DNSBL lookup Class
An Class for looking up Ip addresses against and DNS black list server
25 Oct 2007, 21:53:00   Source: DNSBL lookup Class   Tags: Internet
An easy-to-use URL file downloader class for .NET
A simple to use resumable file downloader class that provides progress feedback for .NET 2.0 or .NET 1.1
16 Aug 2007, 13:07:00   Source: An easy-to-use URL file downloader class for .NET   Tags: Internet Examples
Generic TCP/IP Client/Server
In this article I hope to show a very useful architecture for building a network server over TCP/IP communication. I know there are a ready TCP and UDP servers you can buy and there are some more you can download but the problem is that those you can buy usually gives you a "black box". they also cost money (the good ones cost alot of money). Another problem is that they were designed for heavy and resourceful machines to work properly. The others you can download seem to go stright into a certain architecture which is usually incorrect or least to say they use an architecture which I believe is not the best we can use to milk the machine...
2 Aug 2007, 23:28:00   Source: Generic TCP/IP Client/Server   Tags: Internet
Networking: Get Connected With The .NET Framework 3.5

In the Microsoft .NET Framework, the System.Net namespace exposes the functionality of many networking protocols, such as HTTP and SMTP. The upcoming release of the .NET Framework 3.5 (which will ship with Visual Studio 2008, formerly code-named "Orcas") includes a number of performance and functional enhancements to these core networking layers. In this article, we'll look at three key changes provided by the System.Net team:

  • High performance Socket API
  • International Resource Identifier support for URIs
  • Peer-to-Peer (P2P) namespace..
16 Jul 2007, 19:00:00   Source: Networking: Get Connected With The .NET Framework 3.5   Tags: Internet
Use of the PayPal payment system in ASP.NET
Those who create commercial sites are faced with the question, "How should it receive payments?" One of the most popular payment systems in the world is PayPal. This system is often chosen because it is reliable, simple to use and allows an account to be easily opened. To open an account, you need only have a credit card and/or an account in an American bank. One of shortcomings of the system is its severe security policy. However, practice evinces that if you follow the rules of the system carefully, then errors are very rare. The purpose of this article is to show how payments processing can be organized to support reliability and security. The article is also aimed at providing you with an example of the development of a simple online shop, in order to demonstrate interaction with the PayPal system. You can use the code in your applications to organize interaction with the PayPal system and to process payments.
14 Jun 2007, 15:16:00   Source: Use of the PayPal payment system in ASP.NET   Tags: ASP.NET Examples Internet
WebResourceProvider goes .NET
A a simple yet powerful framework for retrieving useful information from public sources on the web.
14 Jun 2007, 13:28:00   Source: WebResourceProvider goes .NET   Tags: Internet
Building a User Control that Displays RSS Feeds Using a DataList and an XmlDataSource Control

In this article we will see just how easy it is to display XML data in an ASP.NET 2.0 page. In particular, we will build a User Control that will display the contents of an RSS feed. Once created, this User Control can be dragged onto the Design surface of any ASP.NET page in your project and configured to display the contents of a particular RSS feed by simply setting the control's Url property to the URL of the RSS feed.

Bridging the gap between .Net and Extended MAPI
An article about how to access Extended MAPI properties, fields and methods from your .Net applications.
11 Jun 2007, 16:24:00   Source: Bridging the gap between .Net and Extended MAPI   Tags: Internet Office
Simple Ping Utility with GUI
This article demonstrates usage of the Ping class located in the System.Net.NetworkInformation namespace. It can help network administrators or others who need to monitor their servers and connections.
23 May 2007, 12:59:00   Source: Simple Ping Utility with GUI   Tags: Examples Internet