0

在 SSRS 2008 R2 中开发报告时出现以下错误:

请求“System.Web.Aspnethostingpermission, System, Version 2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”类型的权限失败

当我使用以下自定义代码时:

System.Web.HttpContext.Current.Response.Write("< script language='javascript' >alert('From date不能超过To date');</script >")
我已经搜索了各个站点以解决此问题,但没有用。在这方面的任何帮助将不胜感激。

这是完整的自定义代码:

Function CheckDateParameters(FromDate as Date, ToDate as Date) as Integer

If (FromDate > ToDate)  Then

System.Web.HttpContext.Current.Response.Write("< script language='javascript' >alert('From date can’t be more than the To date');< /script >") 

End If

End Function
4

1 回答 1

0

我认为代码

System.Web.HttpContext.Current.Response.Write("script language='javascript'alert('From date can’t be more than the To date');<\script>")

应该是(缺少括号):

System.Web.HttpContext.Current.Response.Write("<script language='javascript'>alert('From date can’t be more than the To date');<\script>")

编辑: http ://forums.whirlpool.net.au/archive/1131887

于 2011-05-13T13:07:06.273 回答