ビューにカスタム コントロールを追加すると、次のエラーがスローされます: -
"\\Views\\Error\\Index.cshtml(9): error CS1502: The best overloaded method match for 'System.Web.WebPages.WebPageExecutingBase.Write(System.Web.WebPages.HelperResult)' has some invalid arguments"
インデックスページのコードは次のとおりです: -
@{
ViewBag.Title = "Error";
}
<h2>
Sorry, an error occurred while processing your request.
</h2>
<div>@Html.RenderPartial("MyUserControl")
MyUserControl のコードは次のとおりです: -
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
hi
@Html.RenderPartial("MyUserControl")
ビューから削除すると、ページが完全にレンダリングされます。