Search This Blog

Saturday, December 4, 2010

Week- 14

Even though we did a lot of work over the thanksgiving break , it was not sufficient because the deadline was approaching. Then we all decided( John, Pratik, Sri, Dharmil, Myself) decided to sit over night and complete most of the stuff. We all sat together in PMU and started for an all nighter. Pratik was keeping track of all the problems we were facing, all the things we had to do and all the new functions were emerged upon continuous 12 hours of coding. I mean literally 12 hours of coding. Not one person, not two..but all five of us were plugged into our own computers and was continuously coding new functions, fixing new bugs that arrived.

Below is a very small list of all the things that we have done on the night.

1)fixed so that restrictions on max people
2)Delete Events works.
3)response redirect edit.aspx.cs
4)shouldn't edit family member name, just delete and add a new one
5)took out password for admin edit Accounts/edit.aspx
6)took out warning from Job.cs
7)Cleaned up UI for Volunteer/account.aspx and added addFamilyMember.aspx
8)Delete Account from admin pannel is working.
9)Delete Events works.

By time createJob and also Add job were working properly.

<asp:Content ID="Content2" ContentPlaceHolderID="body" runat="server">
    <h3>Create Job</h3>
<div id="message" style="color: Red;"></div>
          <form id="form1" runat="server">      
          <table>
      <tr>
        <td>Name Of Job</td><td><asp:TextBox ID="txtName" runat="server"></asp:TextBox></td>
     </tr>
        <tr>
        <td>Start time</td>
        <td>
        <asp:TextBox ID="txtStartTime1" Width="25" runat="server" MaxLength="2"></asp:TextBox>
        <asp:Label ID="Label1" runat="server" Height="18px">:</asp:Label>
        <asp:TextBox ID="txtStartTime2" Width="25" runat="server" MaxLength="2"></asp:TextBox>
        <asp:DropDownList ID="DropDownList1" runat="server">
        <asp:ListItem Text="AM"></asp:ListItem>
        <asp:ListItem Text="PM"></asp:ListItem>
        </asp:DropDownList>
        </td>
    </tr>
    <tr>
        <td>End time</td>
        <td>
        <asp:TextBox ID="txtEndTime1" Width="25" runat="server" MaxLength="2"></asp:TextBox>
        <asp:Label ID="Label2" runat="server" Height="18px">:</asp:Label>
        <asp:TextBox ID="txtEndTime2" Width="25" runat="server" MaxLength="2"></asp:TextBox>
        <asp:DropDownList ID="DropDownList2" runat="server">
        <asp:ListItem Text="AM"></asp:ListItem>
        <asp:ListItem Text="PM"></asp:ListItem>
        </asp:DropDownList>
        </td>
    </tr>
     
      <tr>
        <td>Description </td><td><asp:TextBox ID="txtDescription" TextMode="MultiLine" Height="100" Width="300" runat="server"></asp:TextBox></td>
    </tr>

        <tr>
        <td>Max no. of People </td><td><asp:TextBox ID="txtMax" TextMode="MultiLine" Height="20" Width="50" runat="server"></asp:TextBox></td>
    </tr>

    <tr>
    <td>
     <asp:Button  ID="btnSubmit" OnClientClick="return checkForm()" runat="server" Text="Submit" onclick="btnSubmit_Click" />
     </td>
    </tr>
      </table>
         
    <div class="warning">
    <asp:Label ID="formWarningLabel" runat="server" Text=""></asp:Label>
    </div>

No comments:

Post a Comment