Posts by Gabriel Ochoa • 11 points
2 posts
-
0
votes3
answers826
viewsA: Calculate hours worked
You can calculate the difference of the dates so the result will be in milliseconds var diff = Math.abs(date1 - date2); After this just create a Date object for this. For example: var diff =…
-
1
votes1
answer95
viewsA: What command can I use to delete an item from a Repeater in c# Asp.net
You can put an if on Repeater. I believe this should help you. For example the code here has a currentItem if. <table cellpadding="0" cellspacing="0"> <asp:Repeater ID="Repeater1"…