Possible Languages and Software to Be Used


Access DBMS
Microsoft Access database management system is a member of the Microsoft Office suite of applications. It combines the relational Microsoft Jet Database Engine with a graphical user interface and software-development tools.

ASP.NET
ASP.NET is a web application framework that developers can use to build dynamic web sites, web applications, and XML web services. If the result can not be displayed, click on Radio buttons.


radio.aspx

<html> 
 <%
  dim cars
  cars = Request.Form( "cars" )
 %>
 <body>
  <form action="demo_radiob.asp" method="post">
   Please select your favorite car:
   <input type="radio" name="cars"
    <%if cars="Volvo" then Response.Write( "checked" )%>
    value="Volvo">Volvo

   <input type="radio" name="cars"
    <%if cars="Saab" then Response.Write( "checked" )%>
    value="Saab">Saab

   <input type="radio" name="cars"
    <%if cars="BMW" then Response.Write( "checked" )%>
    value="BMW">BMW

   <input type="submit" value="Submit" />
  </form>
  <%
   if cars <> "" then
    Response.Write( "Your favorite car is: " & cars )
   end if
  %>
 </body> 
</html>

Web





      Two fishes are in a tank. One turns to the other and says...    
      How do you drive this thing?