次のエラーが発生します。
"リクエストの処理中に申し訳ありませんが、エラーが発生しました。"
カテゴリのリストに戻るために、単純なActionLinkを追加しようとしています。
ビューのコードは次のとおりです。
<p>
<%: Html.ActionLink("Return to List of DVDs", "DVDs",
New With {.controller = "DVD"})%>
</p>
私の関数のコードは次のとおりです。
Function DVDs(ByVal category As Integer) As ActionResult
Dim DVDsList As IList(Of DVDBEAN) = _DVDSearchService.GetDVDs(category)
If Not User.Identity.IsAuthenticated Then
Return RedirectToAction("LogOn", "Account")
Else
If Not User.IsInRole("Admin") Then
Return View("CustomerDVDs", DVDsList)
End If
Return View("DVDs", DVDsList)
End If
End Function
私はWeb開発とASP.NETに慣れていないので、気楽にやってください。アドバイスをいただければ幸いです。
ありがとうございました。