Good! I am working with ASP.NET and in two TextBox I am using DatetimePicker from Bootstrap. I would like to put an AutoPostBack to the second TextBox to calculate the time difference of both and show it in another control but it does not do anything and I need help. Thanks in advance.
<div class="form-group text-center">
<label> Hora de Llegada</label>
<asp:TextBox ID="txtHoraLlegada" runat="server" CssClass="form-control"
AutoPostBack="true" ontextchanged="txtHoraLlegada_TextChanged" />
<div class="input-group date">
</div>
<script type="text/javascript">
$(function () {
$('#<%=txtHoraLlegada.ClientID %>').datetimepicker();
});
</script>
</div>