Tagged Questions

1
vote
1answer
267 views

How to set the “float” style using FluentHtml in MVCContrib

I'm working in ASP.NET MVC 1.0 using MvcContrib FluentHtml version 1.0. The following code doesn't work because float is a C# keyword. <%= this.TextBox(m => m.Name).Styles(float => "left") ...
0
votes
1answer
244 views

Anyone had success with EditorFor Templates using FluentHtml?

I know it's a long shot, but i wondered if anyone has had any success with using FluentHtml inside an editorFor Template. Specifically, getting the prefixes to work so that the viewmodel binds back ...
0
votes
2answers
354 views

How to set Foreign Key object using Entity Framework and FluentHtml

What I'm looking to do is set a Foreign Key object in an EF entity via FluentHtml. I have an entity of Foo with a reference to the object Bar via Foo.Bar. What I am trying to do is set the value of ...