We can automatically webpage refresh/ reload with two ways. one of them is using HTML Meta Tag and another is Javascript. in this tutorial you can learn both technique. Using Meta Tag <!DOCTYPE html> <html class= "k-ff k-ff43" > <head> <meta http-equiv= "refresh" content= "10" /> </head> <body> <div class= "refressData" style= "border: 2px dotted red; margin-top:40px;" id= "refressData" > </div> <script> $( document ).ready( function () { var dateTime = 'Date: ' + new Date ().getDate() + '/' + new Date ().getMonth() + '/' + new Date ().getFullYear() + '/' + ' Time: ' + new Date ().getHours() + ": " + new Date ().getMinutes() + ':' + new Date ().getSeconds(); $( "#refressData" ).append(dateTime); }) </script> </h...