Click here to Skip to main content
15,879,535 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,

I have a Wizard Control which has 4 wizardsteps i have some textboxes in those wizardstep i am not able to get the ids of those textbox using javascript.

Any suggestion.
Posted

Hi,

You should use for the control ClientIdMode = "Static" so you can call those controls by using document.getElementById()

Regards
 
Share this answer
 
Comments
n.podbielski 14-Nov-12 4:16am    
Unless he does not use ASP.NET 4
If you are using ASP.NET 4 see answer one. Otherwise you have to obtain ClientId from control to JS.
HTML
document.getElementById('<%=control.ClientId%>');

Not very nice since mixing HTML, JS and C#. If you could migrate to never version of ASP, migrate just for this it will save you some pain in maintaining code.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900