Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

_onblur()

Status
Not open for further replies.

danalynn

Programmer
Jun 12, 2001
25
US
Private Sub EmpName_onblur()
If Trim(EmpName.Value) = " " Then
ErrorMsg.innerText = "Employee Name Required!"
Else
ErrorMsg.innerText = " "
End If
End Sub

I am creating a simple DHTML page. I keep getting a runtime error when i run the page. The runtime error is in the "errormsg.innertext = " ". can anyone help me why i am getting this?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top