File uploading has always been a tedious task for the web developer community. Either we have to use a third party component or write several lines of code. With the advent of ASP.Net file uploading has become a lot easier, importantly without the need for third party components. All we have to do is to use the ASP.Net HTML File control and write a few lines of C# code.
The author writes "With ASP.NET you can configure the 'ASP.NET engine' to automatically restart itself when certain criteria are met. For example, if the Web server has 100 requests queued up, you may wish to have the Web server restarted, assuming that some script or DLL is hanging the Web server. Additionally, you can set requirements on restarting the Web server on the memory usage, the total number of requests, or by the total time the Web server's run. This proactive approach was implemented by the ASP.NET team in order to increase the overall uptime of a Web site running ASP.NET: if the memory suddenly shoots through the roof, the Web server can be restarted, reigning in the memory usage and starting anew. The information regarding the life cycle of the current (and past) ASP.NET processes can be examined through the use of the ProcessModelInfo class." This article examines how to retrieve and present such information.
Complete online chapter "Talking To HailStorm" from "Early Adopter HailStorm (.NET My Services)". Provides in depth information on what is .NET My Services, what it provides and how to make use of it.
Accessing and manipulating data using ASP.NET is very easy and flexible. This article takes a look at some of the new .NET data access classes and methods, including the OleDB and SqlClient namespaces, as well as the DataReader, DataSet and DataSetCommand classes. The author tops this article off by creating a simple ASP.NET data access page with C# that retrieves data from a local Microsoft Access database.
This article describes the life cycle of an ASP.NET page from initialization to unloading. Also shows the various methods to override ASP.NET server-side events. Source code available for download.
Sure, you've heard about .NET... maybe you're a Visual Basic programmer for a small company, maybe you write SQL stored procedures for a huge company, or maybe you're just a Microsoft developer wanting to keep on the cutting edge of technology. This article will explain exactly what .NET is, how it works, how we (as developers) can benefit from it, its many new features, and other .NET related information.
ASP.NET is not just the next version of ASP: it's the next era of web development. ASP.NET allows us to use a fully featured programming language (such as C# or VB.NET) to build web applications easily. This article talks about the fundamentals of ASP.NET and some of its powerful features such as web services, the MSDN library and several learning resources.
A complete online chapter "Asynchronous Programming" from "Professional ASP.NET Web Services". Provides in depth information on how and when to implement syncronous and asynchronous processing using web services.
This article begins with an examination of a typical data-driven ASP application and then explains how to do a minimalistic port from ASP to ASP.NET and steps and tips on converting your application fully to ASP.NET. Topics covered:
Running ASP and Microsoft ASP.NET on the same Web server, Examining a common ASP application, and Porting the ASP application to ASP.NET.