Hi! I want show date and time in textbox. How I can use textbox1 instead label1?
<head runat="server">
<script type="text/javascript">
function DateTime() {
window.setTimeout("DateTime()", 1000);
var dt = new Date();
document.getElementById("Label1").innerHTML = dt.toLocaleString();
}
</script>
</head>
<body onload="DateTime()">
</body>