ASP.net 绑定表达式给出对象所需错误
我正在编写一个使用 ASP.net 的 RadAjax 工具的页面,现在我使用 RadAjax 面板来更新页面的一部分,但问题是我的页面还包含 ASP.net 绑定表达式,例如 <%= textBox.ClientID %>由于这些原因,我收到一个错误,无法使用 <% %> 更新组件所以我搜索了谷歌,发现这个<%= %>可以替换为这个 <%# %>停止这个错误,但现在的问题是,每当调用新的绑定语句时,我都会收到一个 JavaScript 错误,指出此表达式上需要对象。
(<%# textBox.ClientID %>).value
其中 textBox 是标准 ASP.net 控件。
任何想法如何解决这个错误。谢谢。
I am coding a page that use RadAjax tools for ASP.net, now I am using RadAjax panel to update a portion of page but the problem is my page also contains ASP.net binding expressions like <%= textBox.ClientID %> due to these I get an error that cannot update components with <% %> so I searched google and found that this <%= %> can be replaced with this <%# %> to stop this error but now the problem is whenever the new binding statements are called I get a javascript error saying object required like on this expression.
(<%# textBox.ClientID %>).value
where textBox is standard ASP.net control.
Any ideas how can I fix this error. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 <%# %>您必须对页面(或控件)进行数据绑定。尝试在 Page_Load 中调用 DataBind 并查看是否可以解决您的问题。
If you use <%# %> you have to databind the page (or the control). Try to call DataBind in Page_Load and see whether that fixes your problem.