Taking dynamically created Text box id from client Side
-
Hi All, How can i take the dynamically created control id from client side?? Note: dim txt as new textbox dim plcholder as new placeholder plcholder.control.add(txt) now i can create dynamically text box sucessfully, But i want to take this id from Client side like as below var txtid = document.getelementID("<%=txt.ClientID >") is it possible? or else any other way to take this id?? if anyone knows plz answer me........
kannak
-
Hi All, How can i take the dynamically created control id from client side?? Note: dim txt as new textbox dim plcholder as new placeholder plcholder.control.add(txt) now i can create dynamically text box sucessfully, But i want to take this id from Client side like as below var txtid = document.getelementID("<%=txt.ClientID >") is it possible? or else any other way to take this id?? if anyone knows plz answer me........
kannak
Request.Form["ctl00$plcholder$txt"]
Deepak :) Smile a Lots,Its Costs Nothing
-
Request.Form["ctl00$plcholder$txt"]
Deepak :) Smile a Lots,Its Costs Nothing
or you can also use <%= textboxid.ClientID %>
Government Dyal Singh College Lahore.
-
Request.Form["ctl00$plcholder$txt"]
Deepak :) Smile a Lots,Its Costs Nothing