Click here to Skip to main content
15,891,423 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
RadNumericText rntb=new RadNumericText();
string cid=rntb.ClientID; 


i tried the above piece of code but not able to get the requiered result i.e ClientID
Posted
Updated 10-Sep-12 0:36am
v2

As I think you need to specify the ID of the control first(Already specified in the link). Then only you can get the client id of that control. Try this:
C#
RadNumericText rntb=new RadNumericText();
rntb.ID = "rntbMoney";
string cid=rntb.ClientID; 




--Amit
 
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