Slide 1.3: A generic web system structure
Slide 1.5: Possible software to be used (cont.)
Home

Possible 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.


default.aspx

<%@ Page Language="C#" %>
<!DOCTYPE html>
 <script runat="server">
  protected void Lookup_Click( object sender, EventArgs e ) {
   Result.Text = "Hi " + Name1.Text + ", you selected: " +
    Category.SelectedValue;
  }
 </script>
 <body>
  <form id="form1" runat="server">
   Name: <asp:TextBox ID="Name1" runat="server" />
   Category:
   <asp:DropDownList ID="Category" runat="server">
    <asp:ListItem Selected="True">psychology</asp:ListItem>
    <asp:ListItem>business</asp:ListItem>
    <asp:ListItem>popular_comp</asp:ListItem>
   </asp:DropDownList>
   <asp:Button ID="Lookup" runat="server" Text="Lookup" />
   <asp:Label  ID="Result" runat="server" Text="" />
  </form>
 </body>
</html>

Web