[Message Deleted]
-
[Message Deleted]
-
[Message Deleted]
You will have to use the onclick event of the textbox and call a javascript function that will set the text of the textbox to ""
onclick="make_blank();"
function make_blank()
{
var textbox = document.getElementById("")//your textbox id goes here
if(textbox!=null)
{
textbox.value="";
}
}modified on Monday, June 23, 2008 2:28 AM
-
You will have to use the onclick event of the textbox and call a javascript function that will set the text of the textbox to ""
onclick="make_blank();"
function make_blank()
{
var textbox = document.getElementById("")//your textbox id goes here
if(textbox!=null)
{
textbox.value="";
}
}modified on Monday, June 23, 2008 2:28 AM
onclick event of textbox .. is Sure? if yes where is it ?
-
You will have to use the onclick event of the textbox and call a javascript function that will set the text of the textbox to ""
onclick="make_blank();"
function make_blank()
{
var textbox = document.getElementById("")//your textbox id goes here
if(textbox!=null)
{
textbox.value="";
}
}modified on Monday, June 23, 2008 2:28 AM
onClinetclick="make_blank();"
rajeshprajapati
-
onClinetclick="make_blank();"
rajeshprajapati
-
onclick event of textbox .. is Sure? if yes where is it ?
-
[Message Deleted]