Build a Simple Web ServiceIn this article we're going to develop a very simple web service using ASP.NET available in Visual Studio.NET Beta 1 which exposes the following functions:
Add(Integer1, Integer2) -- Adds two numbers and returns the result.
Building a Yahoo Stock Quote TickerThe Yahoo Quote Ticker consists of an ASP.Net web service that connects to Yahoo quotes and grabs detailed data on stocks. The application also features a Flash-based user interface that scrolls through each stock using the Flash Ticker component.
Caching Portions of a PageIn addition to the ability to output cache multiple versions of entire pages, ASP.NET includes a simple yet powerful way to cache different portions of a single page
Caching Versions of a PageletJust as you can cache multiple versions of a page's output, you can also cache any or all possible versions of a user control's output on any given Web page
ne of the selling points of the Microsoft® .NET Framework is that it makes programming easier—not just Web programming, but application programming in general. Few would argue that it doesn't live up to the hype. The .NET Framework...