<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default"  EnableSessionState="True"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
   <title>Stan sesji</title>
</head>
<body>
   <form id="form1" runat="server">
   <div>
      <h1>Stan sesji</h1>
      <h3>Zaznacz kategori ksiki</h3>
      <asp:RadioButtonList ID="rbl" runat="server"
            CellSpacing="20"
            RepeatColumns="3"
            RepeatDirection="Horizontal"
            OnSelectedIndexChanged="rbl_SelectedIndexChanged">
         <asp:ListItem Value="n">Platforma .NET</asp:ListItem>
         <asp:ListItem Value="d">Bazy danych</asp:ListItem>
         <asp:ListItem Value="h">Sprzt</asp:ListItem>
      </asp:RadioButtonList>
      <asp:Button ID="btn" runat="server" Text="Wylij"
         OnClick="btn_Click" />
      <br />
      <br />
      <asp:Label ID="lblMessage" runat="server"></asp:Label>
      <br />
      <br />
      <asp:DropDownList ID="ddl" runat="server" Visible="False">
      </asp:DropDownList></div>
   </form>
</body>
</html>
