Welcome   |   ASP.NET   |   Web Services   |   How Do I...?   |   Class Browser   
  |   Font Size...      

Intro2_vb.aspx

<%@ Page Language="VB" %>
<html>
   <head>
      <link rel="stylesheet"href="intro.css">
   </head>

   <body>

       <center>

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

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

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

           </h3>

           <input type=submit value="Lookup">

           <p>

           <% Dim I As Integer
              For I = 0 to 7 %>
              <font size="<%=I%>"> Welcome to ASP.NET </font> <br>
           <% Next %>

       </form>

       </center>

   </body>
</html>