我 RadTextBox
在asp.net
用户控制页面中使用 Telerik。
我Jquery
在主内容页面中编写了下面的验证代码,如下所示,我试图name
在用户控件中将 RadText 框属性设置为静态,以便我可以在主内容页面中使用它。
用户控制页面
<telerik:RadTextBox ID="txtProductPrice" ClientID="txtProductPrice"
runat="server" ClientIDMode="Static" />
主要内容页面:
$("#aspnetForm").validate({
rules: {
ctl00$ContentPlaceHolder1$ucUserInfoI$txtProductPrice: {
required: true,
number: true,
maxlength: 5
},
}
});
我使用动态生成的名称属性来验证文本框,它看起来很难看。
由于 RadTexBox 在 UserControl 页面中,我无法UniqueID
在主要内容页面中使用 RadTexBox,如下所示:
$("#aspnetForm").validate({
rules: {
<%=txtProductPrice.UniqueID %>:{
required: true,
number: true,
maxlength: 5
},
}
});
知道如何UniqueID
在主要内容页面中使用 RadTexBox 吗?
任何帮助都会很棒。