This comprehensive tutorial will walk you step-by-step to create a single ASP.NET page by which you'll be able to retrieve the server name of any given web site.
Your first ASP.NET Page. ASP.NET / Getting Started
ASP.NET is an exceptionally remarkable technology for building web applications. We begin exploring ASP.NET pages with this first article. In this article we'll learn :
* From where to download ASP.NET premium edition?
* The installation process.
* Developing your first ASP.NET page.
* Running and testing your ASP.NET page.
Logging In ASP.NET / Security and Membership
This tutorial covers:
*Manage Web-based security
*Implement Forms Authentication
*Work with Forms Authentication in the raw
*Work with ASP.NET login controls to make writing login pages painless
*Work with ASP.NET role-based authorization
This tutorial covers managing access to your ASP.NET application. Web site security is a major concern for most enterprises. Without any means of securing a site, the Web site can expose areas of your enterprise you may not want exposed. We'll take a quick look at what security means when it comes to Web applications. Then we'll look at various services available within ASP.NET for authenticating and authorizing users.
ASP.NET: An Introduction ASP.NET / Getting Started
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. In this article, John talks about the fundamentals of ASP.NET and some of its powerful features such as web services, the MSDN library and several learning resources.ASP.NET allows you to use a full featured programming language such as C# (pronounced C-Sharp) or VB.NET to build web applications easily.
File Uploading to Server Hard Disk using ASP.NET ASP.NET / File Operations
In this article we will learn how to upload one or more files from the client browser to the server hard disk using plain ASP.NET. We will not be creating or making use of any commercial or home-made components, instead we will learn to make use of standard ASP.NET HTML controls which are part of ASP.NET 1.0.
Control Potpourri ASP.NET / Controls
ASP.NET has always evolved with the goal of reducing the effort developers must expend to get their Web sites up and running. One of the things you'll find as you tour ASP.NET is that Microsoft has done a great job of anticipating what the developer needs and putting it in the framework.
ASP.NET For Beginners ASP.NET / Getting Started
What is ASP.NET? ASP.NET is "ASP" + ".NET". ASP.NET is the latest version of Microsoft's Active Server Pages technology (ASP).
What is Active Server Pages.net? ASP.NET / Getting Started
ASP has been rebuilt from the ground up. The result is ActiveServerPages.net. ASP.net, with a host of new features, provides for easier to write, cleaner code that's simple to reuse and share. ASP.net boosts performance and scalability by offering access to compiled languages.
Configurations ASP.NET / Configuration
This tutorial introduces the method in which ASP.NET manages configuration information. It gives a taste of how ASP.NET configuration works. We'll see details about ASP.NET configuration in later tutorials. ASP.NET is a feature-rich system for developing and deploying Web sites. The features we'll see in more detail as we examine ASP.NET further include some the following:
*session state
*caching content to help optimize your Web site's responses
*tracing requests
*mapping specific file extensions to custom handlers
*authenticating users.
Getting Started With ASP.NET ASP.NET / Getting Started
A Sample Chapter from "Beginning ASP.NET using VB.NET". Topics covered include: Static Web Pages Dynamic Web Pages; An overview of the different technologies for creating dynamic web pages, including ASP.NET; Installing Internet Information Services (IIS); Installing the .NET Framework; and Testing and Troubleshooting your installation.
Submitting Web Form data from one ASP.NET page to another ASP.NET / Web Forms
This article discusses different options you as a developer have in ASP.NET to send data from one ASP.NET page to another. Since you cannot use ASP.NET Web Controls (System.Web.UI.WebControls) in such a scenario (which only allow posting back of data to the same page), this article discusses other ways like using HttpContext object.
Using File Uploading Control ASP.NET / File Operations
.NET comes with great features. Anymore your do not need any additional code libraries to upload files to your web server. Microsoft.NET includes itself a file upload wizard. Now we will examined and play with this tool. I've used Visual Web Developer 2008 and ASP.NET 3.5 to create this sample application.
The ASP.NET Page Life Cycle ASP.NET / General Development
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.