javascript in asp.net
-
hi, i want to access the value using getElementById, but i am not able to use the .value property for getElementById. can anyone help me???
-
Hi, Please post also detail of the control by whcih u r trying. I think there must not be a problem with value.
Regards Anil Pal
hi, i am using a table whose rows are created dynamically, and for each row i have a select box. The values are filled in the select box dynamically through the database. I want to access the value selected in the select box in the click of the button. I am handling the button click event using a javascript.
-
hi, i am using a table whose rows are created dynamically, and for each row i have a select box. The values are filled in the select box dynamically through the database. I want to access the value selected in the select box in the click of the button. I am handling the button click event using a javascript.
-
Hi, Please use below code to get the dropdownlist value. var fieldName = document.forms[0].elements["DropDownList1"].value
Regards Anil Pal