hi guys
I am population a particular format in
<asp:TextBox ID="txtFileSerialNo" runat="server" onkeyup="Concatinate();"></asp:TextBox>
I am getting it properly. but i also want to edit but i am unable to do it. so suggest.
here is my code
<head runat="server">
<title></title>
<script type="text/jscript">
function Concatinate() {
var txtDepartmentValue = document.getElementById('txtDepartment').value;
var txtFileSerialNoValue = document.getElementById('txtFileSerialNo').value;
var today = new Date();
var dd = today.getDate();
var mm = today.getMonth() + 1;
var yyyy = today.getFullYear();
if (dd < 10) { dd = '0' + dd } if (mm < 10) { mm = '0' ...
Go to the complete details ...