function setTextBoxValue()
  {
   var txtInPoint = document.getElementById("txtINPOINT_TextBox1"); 
   if(document.getElementById("notTxtHour_TextBox1").value.length=1)
   {
   document.getElementById("notTxtHour_TextBox1").value="0"+document.getElementById("notTxtHour_TextBox1").value;
   }
   txtInPoint.value = document.getElementById("notTxtHour_TextBox1").value+':'+document.getElementById("notTxtMinute_TextBox1").value+':'+document.getElementById("notTxtSecend_TextBox1").value+':'+document.getElementById("notTxtFrame_TextBox1").value;
  }


//////////////////////////////////////////////////////////////////////////////////////////////
   this.notTxtHour.Attributes.Add("onblur","setTextBoxValue();");
   this.notTxtMinute.Attributes.Add("onblur","setTextBoxValue();");
   this.notTxtSecend.Attributes.Add("onblur","setTextBoxValue();");
   this.notTxtFrame.Attributes.Add("onblur","setTextBoxValue();");

相关文章: