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 can't be more than the 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 に答える