Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Mar 20th, 2012  |  syntax: ASP  |  size: 11.07 KB  |  hits: 40  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Overgangsnormen.aspx.cs" Inherits="Overgangsnormen" %>
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4.  
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head runat="server">
  7.     <title></title>
  8.     <link rel="stylesheet" href="StyleSheet.css" type="text/css" />
  9.        
  10.    
  11. </head>
  12. <body>
  13.     <form id="form1" runat="server">
  14.     <div>
  15.         <table>
  16.             <tr>
  17.                 <td colspan="2" style="background-color: #0000FF">
  18.                     <strong style="color: #FFFFFF; background-color: #0000FF">Hoofdvakken</strong></td>
  19.             </tr>
  20.             <tr>
  21.                 <td class="style1">
  22.                     <asp:Label ID="lblAna" runat="server" Text="Analyseren"></asp:Label>
  23.                     <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server"
  24.                         ControlToValidate="txtAna" ErrorMessage="Vul je cijfer in!"></asp:RequiredFieldValidator>
  25.                 </td>
  26.                 <td>
  27.                     <asp:TextBox ID="txtAna" runat="server"></asp:TextBox>
  28.                 </td>
  29.             </tr>
  30.             <tr>
  31.                 <td class="style1">
  32.                     <asp:Label ID="lblPhp" runat="server" Text="PHP"></asp:Label>
  33.                     <asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server"
  34.                         ControlToValidate="txtPhp" ErrorMessage="Vul je cijfer in!"></asp:RequiredFieldValidator>
  35.                 </td>
  36.                 <td>
  37.                     <asp:TextBox ID="txtPhp" runat="server" AutoPostBack="True"
  38.                         ontextchanged="txtPhp_TextChanged"></asp:TextBox>
  39.                 </td>
  40.             </tr>
  41.             <tr>
  42.                 <td class="style1">
  43.                     <asp:Label ID="lblAsp" runat="server" Text="ASP/C#"></asp:Label>
  44.                     <asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server"
  45.                         ControlToValidate="txtAsp" ErrorMessage="Vul je cijfer in!"></asp:RequiredFieldValidator>
  46.                 </td>
  47.                 <td>
  48.                     <asp:TextBox ID="txtAsp" runat="server"></asp:TextBox>
  49.                 </td>
  50.             </tr>
  51.             <tr>
  52.                 <td class="style1">
  53.                     <asp:Label ID="lblData" runat="server" Text="Database"></asp:Label>
  54.                     <asp:RequiredFieldValidator ID="RequiredFieldValidator4" runat="server"
  55.                         ControlToValidate="txtData" ErrorMessage="Vul je cijfer in!"></asp:RequiredFieldValidator>
  56.                 </td>
  57.                 <td>
  58.                     <asp:TextBox ID="txtData" runat="server"></asp:TextBox>
  59.                 </td>
  60.             </tr>
  61.             <tr>
  62.                 <td class="style1">
  63.                     <asp:Label ID="lbFlash" runat="server" Text="Flash/HTML5 Canvas"></asp:Label>
  64.                     <asp:RequiredFieldValidator ID="RequiredFieldValidator5" runat="server"
  65.                         ControlToValidate="txtFlash" ErrorMessage="Vul je cijfer in!"></asp:RequiredFieldValidator>
  66.                 </td>
  67.                 <td>
  68.                     <asp:TextBox ID="txtFlash" runat="server" AutoPostBack="True"
  69.                         ontextchanged="txtFlash_TextChanged"></asp:TextBox>
  70.                 </td>
  71.             </tr>
  72.             <tr>
  73.                 <td style="text-align: right" class="style1">
  74.                     <asp:Label ID="lblGemid" runat="server" Text="Gemiddelde"
  75.                         style="font-weight: 700"></asp:Label>
  76.                 </td>
  77.                 <td>
  78.                     <asp:Label ID="lblGem" runat="server"></asp:Label>
  79.                 </td>
  80.             </tr>
  81.             <tr>
  82.                 <td class="style1">
  83.                     <asp:Label ID="lblProject" runat="server" Text="Project 4"></asp:Label>
  84.                     <asp:RequiredFieldValidator ID="RequiredFieldValidator6" runat="server"
  85.                         ControlToValidate="txtProject" ErrorMessage="Vul je cijfer in!"></asp:RequiredFieldValidator>
  86.                 </td>
  87.                 <td>
  88.                     <asp:TextBox ID="txtProject" runat="server"></asp:TextBox>
  89.                 </td>
  90.             </tr>
  91.             <tr>
  92.                 <td colspan="2"
  93.                     style="font-weight: 700; color: #FFFFFF; background-color: #0000FF">Aanvullende vakken</td>
  94.             </tr>
  95.             <tr>
  96.                 <td class="style1">
  97.                     <asp:Label ID="lblNl" runat="server" Text="Nederlands"></asp:Label>
  98.                 </td>
  99.                 <td>
  100.                     <asp:RadioButtonList ID="rbNed" runat="server"
  101.                         onselectedindexchanged="rbNed_SelectedIndexChanged"
  102.                         RepeatDirection="Horizontal">
  103.                         <asp:ListItem>V</asp:ListItem>
  104.                         <asp:ListItem>O</asp:ListItem>
  105.                         <asp:ListItem>NB</asp:ListItem>
  106.                     </asp:RadioButtonList>
  107.                 </td>
  108.             </tr>
  109.             <tr>
  110.                 <td class="style1">
  111.                     <asp:Label ID="lblEng" runat="server">Engels</asp:Label>
  112.                 </td>
  113.                 <td>
  114.                     <asp:RadioButtonList ID="rbEng" runat="server"
  115.                         onselectedindexchanged="rbEng_SelectedIndexChanged"
  116.                         RepeatDirection="Horizontal">
  117.                         <asp:ListItem>V</asp:ListItem>
  118.                         <asp:ListItem>O</asp:ListItem>
  119.                         <asp:ListItem>NB</asp:ListItem>
  120.                     </asp:RadioButtonList>
  121.                 </td>
  122.             </tr>
  123.             <tr>
  124.                 <td class="style1">
  125.                     <asp:DropDownList ID="DropDownList1" runat="server">
  126.                         <asp:ListItem Value="ddlDuits">Duits</asp:ListItem>
  127.                         <asp:ListItem Value="ddlSpaans">Spaans</asp:ListItem>
  128.                     </asp:DropDownList>
  129.                 </td>
  130.                 <td>
  131.                     <asp:RadioButtonList ID="rbKeus" runat="server"
  132.                         onselectedindexchanged="rbKeus_SelectedIndexChanged"
  133.                         RepeatDirection="Horizontal">
  134.                         <asp:ListItem>V</asp:ListItem>
  135.                         <asp:ListItem>O</asp:ListItem>
  136.                         <asp:ListItem>NB</asp:ListItem>
  137.                     </asp:RadioButtonList>
  138.                 </td>
  139.             </tr>
  140.             <tr>
  141.                 <td class="style1">
  142.                     <asp:Label ID="lblReken" runat="server">Rekenen</asp:Label>
  143.                 </td>
  144.                 <td>
  145.                     <asp:RadioButtonList ID="rbRek" runat="server"
  146.                         onselectedindexchanged="rbRek_SelectedIndexChanged"
  147.                         RepeatDirection="Horizontal">
  148.                         <asp:ListItem>V</asp:ListItem>
  149.                         <asp:ListItem>O</asp:ListItem>
  150.                         <asp:ListItem>NB</asp:ListItem>
  151.                     </asp:RadioButtonList>
  152.                 </td>
  153.             </tr>
  154.             <tr>
  155.                 <td class="style1">
  156.                     <asp:Label ID="lblVisio" runat="server">Visio</asp:Label>
  157.                 </td>
  158.                 <td>
  159.                     <asp:RadioButtonList ID="rbVis" runat="server"
  160.                         onselectedindexchanged="rbVis_SelectedIndexChanged"
  161.                         RepeatDirection="Horizontal">
  162.                         <asp:ListItem>V</asp:ListItem>
  163.                         <asp:ListItem>O</asp:ListItem>
  164.                         <asp:ListItem>NB</asp:ListItem>
  165.                     </asp:RadioButtonList>
  166.                 </td>
  167.             </tr>
  168.             <tr>
  169.                 <td class="style1">
  170.                     <asp:Label ID="lblEcdl" runat="server">ECDL</asp:Label>
  171.                 </td>
  172.                 <td>
  173.                     <asp:RadioButtonList ID="rbEcd" runat="server"
  174.                         onselectedindexchanged="rbEcd_SelectedIndexChanged"
  175.                         RepeatDirection="Horizontal">
  176.                         <asp:ListItem>V</asp:ListItem>
  177.                         <asp:ListItem>O</asp:ListItem>
  178.                         <asp:ListItem>NB</asp:ListItem>
  179.                     </asp:RadioButtonList>
  180.                 </td>
  181.             </tr>
  182.             <tr>
  183.                 <td class="style1">
  184.                     <asp:Label ID="lblLb" runat="server">LB</asp:Label>
  185.                 </td>
  186.                 <td>
  187.                     <asp:RadioButtonList ID="rbLb" runat="server"
  188.                         onselectedindexchanged="rbLb_SelectedIndexChanged" RepeatDirection="Horizontal">
  189.                         <asp:ListItem>V</asp:ListItem>
  190.                         <asp:ListItem>O</asp:ListItem>
  191.                         <asp:ListItem>NB</asp:ListItem>
  192.                     </asp:RadioButtonList>
  193.                 </td>
  194.             </tr>
  195.             <tr>
  196.                 <td class="style1">
  197.                     <asp:Label ID="lblSport" runat="server">Sport</asp:Label>
  198.                 </td>
  199.                 <td>
  200.                     <asp:RadioButtonList ID="rbSport" runat="server" AutoPostBack="True"
  201.                         onselectedindexchanged="rbSport_SelectedIndexChanged"
  202.                         RepeatDirection="Horizontal">
  203.                         <asp:ListItem>V</asp:ListItem>
  204.                         <asp:ListItem>O</asp:ListItem>
  205.                         <asp:ListItem>NB</asp:ListItem>
  206.                     </asp:RadioButtonList>
  207.                 </td>
  208.             </tr>
  209.             <tr>
  210.                 <td style="text-align: right" class="style1">
  211.                     <asp:Label ID="lblAV" runat="server" style="text-align: right" Text="Aantal V"></asp:Label>
  212.                 </td>
  213.                 <td>
  214.                     <asp:Label ID="lblV" runat="server"></asp:Label>
  215.                 </td>
  216.             </tr>
  217.             <tr>
  218.                 <td style="text-align: right" class="style1">
  219.                     <asp:Label ID="lblAO" runat="server" style="text-align: right" Text="O"></asp:Label>
  220.                 </td>
  221.                 <td>
  222.                     <asp:Label ID="lblO" runat="server"></asp:Label>
  223.                 </td>
  224.             </tr>
  225.             <tr>
  226.                 <td style="text-align: right" class="style1">
  227.                     <asp:Label ID="lblANb" runat="server" style="text-align: right" Text="NB"></asp:Label>
  228.                 </td>
  229.                 <td>
  230.                     <asp:Label ID="lblNB" runat="server"></asp:Label>
  231.                 </td>
  232.             </tr>
  233.             <tr>
  234.                 <td>
  235.                     Als je alles hebt ingevuld klik dan hier voor je resultaat!<br />
  236.     <asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Bekijk resultaat" />
  237.                    
  238.                 </td>
  239.                 <td><asp:Label ID="lblResultaat" runat="server"></asp:Label></td>
  240.             </tr>
  241.         </table>
  242.     </div>
  243.     <p>
  244.         &nbsp;</p>
  245.     </form>
  246. </body>
  247. </html>