After many attemps to get Html.ActionLink<> and Html.Image() methods from different assemblies without any success could you help find the source of these methods so that I can use them in my Web app ?
Thanks
After many attemps to get Html.ActionLink<> and Html.Image() methods from different assemblies without any success could you help find the source of these methods so that I can use them in my Web app ?
Thanks
Maybe post some code? Are you sure you're using MVC? Are you trying in your View? Are you doing something like the following?:
<%=Html.TextBox("myTextBox")%>
The ASP.NET MVC source code is available at codeplex.
The Html Helper methods are located in the HtmlHelper
class, in the namespace System.Web.Mvc
.
Or, you can open the System.Web.Mvc DLL using Reflector, and view the source for the HtmlHelper methods there.