J'essaie d'utiliser Html.RenderPartial dans acsx fichier et je reçois une erreur:L'utilisation Html.RenderPartial() dans les fichiers ascx
Compiler Error Message: CS1973: 'System.Web.Mvc.HtmlHelper' has no applicable method named 'RenderPartial' but appears to have an extension method by that name. Extension methods cannot be dynamically dispatched. Consider casting the dynamic arguments or calling the extension method without the extension method syntax
<a href="/projects/<%=project.Id %>">
<% Html.Label("fdf"); %>
<% Html.RenderPartial("ProjectName", Model.Id); %></a></li>
<%} %>
Cependant, j'ai importation neccessary namespaces , donc il ne sera pas erreur à
<% Html.Label("fdf"); %>
y a-t-il des méthodes pour utiliser Html.RenderPartial dans le fichier ascx?
+1 Résolu mon problème aussi! Merci! – Rob
@Rob, si jamais vous passez à Razor, pensez à l'utiliser: http://stackoverflow.com/questions/4047543/render-partial-view-with-dynamic-model-in-razor-view-engine-and-asp -net-mvc-3/5357049 # 5357049 – juan