CLEAR A TEXTBOX on SETFOCUS IN ASP.NET with C#?
-
currently i m using ASP.NET with C# (.net 2003,1.1 framework). when i click on a textbox, the default TEXT is to be get cleared.... how to achieve it? - KARAN
-
currently i m using ASP.NET with C# (.net 2003,1.1 framework). when i click on a textbox, the default TEXT is to be get cleared.... how to achieve it? - KARAN
This can be done with JS. Hook
OnClick
javascript event, get the textbox object inside the event handler, and setvalue=""
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia How to use google | Ask smart questions
-
This can be done with JS. Hook
OnClick
javascript event, get the textbox object inside the event handler, and setvalue=""
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia How to use google | Ask smart questions
thanks navaneeth