ASP.NET gridview 回发不适用于匿名用户
当使用 gridview 且未登录到 asp.net 网站时,java scrpit 似乎无法工作。 如果我以用户身份登录,任何带有网格视图的页面都可以正常工作。 使用 Firebug 检查 javascript 时遇到的唯一错误是 “ReferenceError:未定义 DES_ValOnSubmit。” 这是对 Peter Blum javascript 函数的引用,但不知道为什么它对于匿名用户会失败,而对于登录用户却会失败。
感谢您的任何帮助。
When using a gridview and not logged into a asp.net website, the java scrpit does not appear to work.
If I am logged in as a user, any pages with gridviews work fine.
The only error I'm getting when checking the javascript with Firebug is
'ReferenceError: DES_ValOnSubmit is not defined.'
This is a reference to a Peter Blum javascript function, but have no idea why it would fail for anonymous users, and it does for logged in users.
Thanks for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您的身份验证方案可能是什么,但如果您在 web.config 文件中使用授权标签,并且拒绝匿名用户访问您的网站部分,则可能需要为您的 javascript 做出明确的例外地点。像这样:
您还可以将路径设置为“MyScriptFolder”,以允许所有用户根据需要访问您的 javascript。
I'm not sure what your authentication scheme might be, but if you are using the authorization tags in the web.config file, you might need to make an explicit exception for your javascript if you are denying the anonymous user to sections of your web site. Something like this:
You can also just set the path to "MyScriptFolder" to allow all users access to your javascript as needed.