Web caching in ASP.NET 2.0 (VB.NET)
Web caching technology in ASP.NET and VB.NET is helpful for popular website reducing its server workload and improving access times. This tutorial will show you how to use web caching save data to RAM, and improve data access times therefore...
Performing a DNS query using ASP.NET 2.0 and C# .NET
This tutorial will show you how to perform a DNS query using the .NET System.Net class, ASP.NET 2.0 and C#.NET The .NET Framework offers a number of types that makes accessing networked resources easy. To perform a DNS query, we will need to first import the System.Net namespace. The System.Net namespace...
Performing a File Upload using ASP.NET 2.0 and C# .NET
This tutorial will show you how to perform a File Upload using the FileUpload control,.NET System.Text.RegularExpressions class, ASP.NET 2.0 and C#.NET The .NET Framework offers the FileUpload control to simplify uploading files from web pages. For this example, we will need to first import the System...
Best Practices to Improve ASP.Net Web Application Performance : Somnath Dey
Performance tuning can be tricky. It's especially tough in Internet-related projects with lots of components running around, like HTML client, HTTP network, Web server, middle-tier components, database components, resource-management components, TCP/IP networks, and database servers. Performance tuning...
Resolving Domain Names and IP Addresses : Rajesh Toleti
Using the Dns class in System.Net namespace in .NET, we can easily resolve domain names and IP addresses. In this CodeSnip, Rajesh gives us a sweet, simple sample showing how to do this. To retrieve information about a specific host from the Internet Domain Name System (DNS), we have to use Dns, IPHostEntry...
