To clear all textboxes in a page
-
i am doing an application in which i want to clear all textboxes in the page anyone please help me...
SAJAN A PILLAI C#.NET Programmer TELESOFT INDIA PVT LTD... BANGALORE
-
i am doing an application in which i want to clear all textboxes in the page anyone please help me...
SAJAN A PILLAI C#.NET Programmer TELESOFT INDIA PVT LTD... BANGALORE
-
i am doing an application in which i want to clear all textboxes in the page anyone please help me...
SAJAN A PILLAI C#.NET Programmer TELESOFT INDIA PVT LTD... BANGALORE
http://www.codeproject.com/script/comments/forums.asp?msg=2081919&forumid=12076&Page=1&userid=2380649&mode=all#xx2081919xx[^]
Regards, Sylvester G sylvester_g_m@yahoo.com
-
i am doing an application in which i want to clear all textboxes in the page anyone please help me...
SAJAN A PILLAI C#.NET Programmer TELESOFT INDIA PVT LTD... BANGALORE
you can also have some javascrip funtion for this. var controls = document.all; if(controls[i].tagName == 'INPUT') { var tmpID = controls[i].id; tmpID.value = ""; }