Posted on: 6/10/2015 5:33:08 AM | Views : 746

Hi,
I want a functionality where a user can enter time in the below format in the textbox
InTime :   hh:mm   // In time of the employee   1st textbox
OutTime:  hh:mm  // Out Time of the employee  2nd textbox
Third Textbox
Total Time of the employee:   Here total will come from both the textboxes.
Here is my HTML. Kindly help
<tr> <td> <asp:Label ID="lblInTime" runat="server" Text="In Time" Visible="true"></asp:Label> <asp:TextBox ID="txtInTime" runat="server" Width="100"> </asp:TextBox> </td> </tr> <tr> <td> <asp:Label ID="lblOutTime" runat="server" Text=& ...

Go to the complete details ...