TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About System.Net
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Bill Farley (3)
Scott Lysle (2)
John O Donnell (2)
Michael Marasco (2)
Mahesh Chand (2)
Rahul Bansal (1)
Ahsan Murshed (1)
Sourabh Mishra (1)
Abhishek Kumar Ravi (1)
Virender Verma (1)
Joydeep Ghosh (1)
Kirtan Patel (1)
Doug Bell (1)
sushilsaini (1)
Patrick Lam (1)
Pramod Singh (1)
Tin Lam (1)
Pasihavia Havia (1)
Kareem Bawala (1)
Neelam Iyer (1)
Christian Hanssom (1)
Shivani (1)
John Schofield (1)
Uchukamen (1)
Sushila Patel (1)
Related resources for System.Net
No resource found
How to Send an Email With Image in C#
4/3/2024 9:41:22 AM.
Send emails with images in C# using System.Net.Mail. Create an alternate view to embed images within HTML content. Utilize LinkedResource to reference images and SmtpClient to send MailMessage with an
How to Get the MAC Address of System Using ASP.NET/C#
3/1/2024 10:35:18 AM.
In this article, we will learn how to retrieve the MAC address of a system using Asp.net/C#. Explore methods to access network interface information, retrieve hardware identifiers, and ensure system s
Sending an E-Mail With Attachment Using ASP.Net
11/15/2023 8:45:11 AM.
In daily development we need to add some mail functionality to our project, in this article I am going to show you, how you can do this.
Get IP Address Using C#
10/20/2023 8:23:38 AM.
In this article, we find the IP Address of the local device.
Send Email Messages and Attachments Using C#
1/7/2022 9:26:28 AM.
This article describes an approach to sending email messages with or without attachments. The code required to send the message is contained within a reusable class. In addition to sending messages
Send Email From A Razor Page In .NET Core 2 Using System.Net.Mail
5/6/2019 9:29:10 AM.
In this article, I will provide information on how to send an email from a .NET Core Razor Page.
Getting an External IP Address Locally
3/5/2019 11:29:37 PM.
This short article shall address the easiest way possible to get your external IP address (and local/internal IP address).
WhoIs in ASP.NET and VB.NET
12/1/2012 2:18:57 AM.
Quite often you want to know who owns a given domain. To obtain the registry information, you go to the respective registry and start a so called WHOIS query (lookup). The trick is that you have to know which registry is responsible for which TLD (Top Level Domain).
Getting NASDAQ Quotes with a Pocket PC in VB.NET
11/10/2012 9:59:12 AM.
This article describes about getting the NASDAQ Quotes with a Pocket PC. If you have been lucky enough to get the Compact Framework or Smart devices extension beta for April 2002 you may.
IP Lookup program in VB.NET
11/10/2012 1:52:37 AM.
This is an IP look up program that uses VB.NET Windows Forms and IPHostEntry to resolve the DNS request.
Download / Upload Binary Files on FTP Server Using C#
8/12/2012 1:56:03 AM.
Article about downloading and uploading binary files using FtpWebRequest in C#.
Simple NSLookUp Implementation in C#
5/29/2012 11:31:04 PM.
This is code implementation for simple nslookup. As you can see from the code listing, I've used classes defined in the System.Net namespace.
Reading and Display Source of Web Pages
6/4/2009 6:42:23 AM.
This sample project is made to help ASP.NET developers. This projects highlights how to add HTML page inside your ASP.NET page which is hosted on same or different webserver. This page can still run on that server and only output is included in the ASP.NET page.
A Simple Multi-threaded TCP/UDP Server and Client V2.
1/31/2007 4:07:15 AM.
This is the second version of my client/server program. The server and the client can be run on the same machine or on different machines. The following is the brief description of the server and the client programs specifically.
FTP Server in C#
8/30/2006 3:26:42 AM.
The application is a simple implementation of FTP Protocol RFC 959.
Multi-threaded Web Applications - Case I: Search Engine
1/31/2006 4:24:41 AM.
This article is the first of the series of 4. I will demonstrate the use of threading in web applications by implementing a simply search engine. The following 3 articles in the series will be a Port Scanner, a Reverse DNS and a Web Hammer respectively.
Web Scanner Part-1
12/30/2005 5:33:22 AM.
My favourite technology web site is updated throughout the day. I thought it would be nice to have a program that checked every 30 minutes for updates and told me what stories were there.
CSDownloadURL : Download Contents of a Web Page
12/28/2005 6:13:19 AM.
CSDownloadURL is a class which has two functions - SetURL and DownloadURL. The set URL sets the current URL and GetDownload downloads the URL contents and returns its contents in a string.
Get IP Address of a Host
12/28/2005 5:24:49 AM.
The .Net DNS class can be used to get a host name or an IP of a given host name. To use DNS class in your project, you need to include System.Net
C# IRC Bot
12/28/2005 2:26:58 AM.
This is a very simple program that establishes a connection to irc server, joins a channel and greets every nick that joins.
Simple Web File Download
12/28/2005 1:53:49 AM.
This is a simple program that shows how to download files from the web and save them. The program uses the HttpWebRequest and HttpWebResponse classes to request and retrieve the requested file.
Simple SMTP Mailer
12/28/2005 1:45:10 AM.
This is a simple program which shows how to send mail via SMTP without using any framework support. While using the .NET SMTP classes may be a little easier, it is good to be able to go under the hood and get your hands dirty to understand what is going on at the socket level. For simple text messages, this implementation works fine.
Web Request Class
12/28/2005 12:36:10 AM.
This is a simple application that the gets the source of a webpage via the WebRequest Object.
Socket Programming
12/27/2005 7:01:32 AM.
This is a simple Client/Server program showing the communication taking place between the client and the server.
WhoIs Sample Code
12/27/2005 6:57:13 AM.
Sample example shows you how to implement WhoIs...
How to By Pass Proxy
12/27/2005 6:22:52 AM.
There are many like me who are behind the Proxy and many time you are not able to use the recent Data in your Program from Web as your are not able to retrieve that data because of Proxy coming in between.
TCP/IPLib Sample
12/27/2005 6:03:15 AM.
This compopnent contains both a TCP/IP server and client. TcpIpClient inherits from System.Net.Sockets.TCPClient and is very straight forward. After construction, specifying the host and port, a network connection is established by calling Connect(). Internally, upon a successful connection, the client receives a TcpIpPacket, which contains a unique cookie that is used in any subsequent transactions.
Socket Chat
12/27/2005 5:14:00 AM.
This is an implementation of a Chat program using sockets. Along with basic chat capability,
IP LookUp Program in .NET
12/27/2005 1:27:08 AM.
This is an IP look up program that uses C# Windows Forms and IPHostEntry to resolve the DNS request.
IP Address Hostname Convertor
12/27/2005 1:20:21 AM.
This is an IP Address-Hostname converter written in C# Windows Forms.
How to Detect a Dialup Connection?
12/26/2005 4:13:02 AM.
In the article we'll see how to check connectivity with internet using VB.NET.