ASP.net 绑定表达式给出对象所需错误

发布于 2024-12-08 03:50:47 字数 374 浏览 0 评论 0原文

我正在编写一个使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

篱下浅笙歌 2024-12-15 03:50:47

如果您使用 <%# %>您必须对页面(或控件)进行数据绑定。尝试在 Page_Load 中调用 DataBind 并查看是否可以解决您的问题。

protected void Page_Load(object sender, EventArgs e)
{
   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.

protected void Page_Load(object sender, EventArgs e)
{
   DataBind();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文