JavaScript\PopulateTextbox

  • Thread starter Thread starter JR
  • Start date Start date
J

JR

I have a 3rd party asp.net grid. It has some clientevents that allows
the user to attach js code to. I have js in one of the events, when
fired I want to populate an asp.net:textbox control. The script works
for the event, but I can' t get it to populate the asp.net:textbox.
This should be possible, shouldn' t it; Below is the script:

if (G0IsEditing())
{alert("Edit Mode");
TextBox1.text="test";
}
return;


TIA
 
Back
Top