本文介绍了如何获取RadNumericText BOx ClientID的动态创建一个.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

RadNumericText rntb=new RadNumericText();
string cid=rntb.ClientID; 



我尝试了上面的代码,但无法获得所需的结果,即ClientID



i tried the above piece of code but not able to get the requiered result i.e ClientID

推荐答案


RadNumericText rntb=new RadNumericText();
rntb.ID = "rntbMoney";
string cid=rntb.ClientID; 





--Amit





--Amit


这篇关于如何获取RadNumericText BOx ClientID的动态创建一个.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 01:33