Tagged Questions
The htmlextensions tag has no wiki summary.
2
votes
2answers
2k views
ASP.Net MVC 3 - Html Extensions
I'm playing around with Razor + MVC 3 and have a really simple scenario... Basically I'm trying to create a very basic HTML helper but I'm getting the following exception:
...
2
votes
2answers
954 views
Passing Container.Eval to (Html.ReaderPartial) inside ASP.NET Repeater Control
I am trying to pass Eval to Html.RenderPartial inside ASP.NET Repeater but it does not work can any one help?
<asp:Repeater runat="server">
<ItemTemplate>
...
1
vote
4answers
1k views
Using a strongly typed ActionLink when the action method doesn't take a primitive type
Does anyone know how I could go about doing something like :
Html.ActionLink(c => c.SomeAction(new MessageObject { Id = 1 } ))
This should output a link with the url of "/Controller/SomeAction/1", ...
0
votes
2answers
308 views
HtmlExtensions looking for this HtmlHelper<TModel> htmlHelper
i've attempted to add some htmlextensions to my mvc project. When i try to use them they are all expecting a this HtmlHelper htmlHelper parameter? but according to all examples these are not ...