hi everyone,
I have an asp.net mvc application and i am trying to assign value to my textboxe dynamically, but it seems to be not working ( i am only testing on IE right now ) . this is what i have right now..
document.getElementsByName('Tue').Value = tue;
(by the way tue is a variable)
I have also tried this variation but it didnt work either.
document.getElementsById('Tue').Value = tue;
(by the way tue is a variable)
Can somone where plz tell me where am i going wrong with this