my first ASP.NET Page

ASP.NET pages are text files with an .aspx file name extension. Pages consist of code and markup and are dynamically compiled and executed on the server to produce a rendering to the requesting client browser (or device). They can be deployed throughout an IIS virtual root directory tree. When a browser client requests .aspx resources, the ASP.NET runtime parses and compiles the target file into a .NET Framework class. This class can then be used to dynamically process incoming requests. (Note that the .aspx file is compiled only the first time it is accessed; the compiled type instance is then reused across multiple requests).

An ASP.NET page can be created simply by taking an existing HTML file and changing its file name extension to .aspx (no modification of code is required). For example, the following sample demonstrates a simple HTML page that collects a user's name and category preference and then performs a form postback to the originating page when a button is clicked:
(一个简单的HTML实例:收集用户的名字和喜好,然后当单击事件发生后,postback用户信息.)
VB Intro1.aspx 

一个很简单的例子,但有很多东西.(the text box and drop-down list)是其中的核心。当然form postback 机理也很重要.http://www.asp.net/QuickStart/aspnet/doc/pages/pages.aspx
posted on 2006-04-10 22:39  fireflies  阅读(269)  评论(0编辑  收藏  举报