如何获取对“Microsoft.Web.Preview”的引用解决?
我试图在 AJAX 工具包中找到的 ModalPopupExtender 控件启动的表单上包含一个验证器。这是一个 ASP.Net 2.0 Web 应用程序。
有几篇文章展示了如何执行此操作,包括以下参考:
<asp:ScriptReference Assembly="Microsoft.Web.Preview"Name="PreviewScript.js" />
这是我的页面用于测试的文章。 http://usefulaspnet.blogspot.com/2007 /03/modal-popup-with-textbox-and-validator.html
我遇到的问题是,当页面尝试打开时找不到该文件。
- 有没有更好的方法来完成我想要的事情
- 我在哪里可以找到这个文件?
I'm trying to include a validator on a form launched by the ModalPopupExtender control found in the AJAX toolkit. This is an ASP.Net 2.0 web application.
Several articles that show how to do this, include this reference:
<asp:ScriptReference Assembly="Microsoft.Web.Preview"Name="PreviewScript.js" />
This is the article I've based my page on for testing. http://usefulaspnet.blogspot.com/2007/03/modal-popup-with-textbox-and-validator.html
The problem I'm running into is that the file cannot be found when the page tryies to open.
- Is there a better way to do what I want
- Where can I find this file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明#1 是正确答案。
我所要做的就是确保弹出窗口中的验证器都位于同一验证组中。
It turns out #1 is the correct answer.
All I had to do was make sure that the validators in the popup all were in the same validation group.