Here I have using javascript for adding html control(Input). here I am not able to apply asp.net control because it come dynamically from java script I just want to use input value in my coed behind page which is generated by javascript dynamically.
Is there any way to get value from HTML control in asp.net.
By using Request.Form[“id”]` on Button_Click, you will get the value of html control
string id = Request.Form["id"]