Any Lost Focus in ASP?
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Not in ASP, but you can use JavaScript. HTML objects have method blur() and event onblur. Use it like this:
<input type="text" id="edName" onblur="alert('OnBlur event');">
If you wish to assign some attribute to an ASP.NET object (in the code), you can use this:
TextBox1.Attributes.Add("onblur", "alert('TextBox1 OnBlur event');");
-- Mariusz 'mAv' Wójcik master e-software engineer (BPC)