入门

来源:互联网 发布:知藏书轩 编辑:程序博客网 时间:2024/04/30 00:55

    2006年4月1日,开始正式学习ASP.net。

问题1:
网页无法显示

<%@ Page Language="C#"%>

<html>
   <head>
 
      <link rel="stylesheet" href="intro.css">
   </head>

   <body>

       <center>

       <form action="intro1.aspx" method="post">

           <h3> 姓名:<input id="Name" type=text>

           类别:<select id="Category" size=1>
                          <option>psychology</option>
                          <option>business</option>
                          <option>popular_comp</option>
                      </select>

           <input type=submit value="查找">
           </h3>
       </form>

       </center>

   </body>
</html>

解决方案

搭建开发环境(参看:http://blog.csdn.net/SkyIsland/archive/2006/04/02/647718.aspx)

原创粉丝点击