记录每一点进步

王志印的博客
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

Introducing the .net framework(1)

Posted on 2006-10-20 00:54  jerryWong  阅读(138)  评论(0)    收藏  举报

The Evolution of Web Development
1.HTML and HTML Forms
example for html
<html>
   <head>
      <title>Sample Web Page</title>
   </head>
   <body>
      <h1>Sample Web page heading</h1>
      <p>This is a sample web page.</p>
   <body>
</html>
and example for html forms
<html>
   <body>
      <form>
         <input type="checkbox">This is choice #1<br>
         <input type="checkbox">This is choice #2<br><br>
      </form>
   </body>
</html>
2.Server-Side Programming and Client-Side Programming