1
vote
Get MultiView like behavior with ASP.NET MVC
You could it with the Controller
[AcceptVerbs("GET")]
public ActionResult Signup( )
{
// somecode that builds an html string
ViewData["form"] = htmlStringYouBuilt;
}
[A …
0
votes
Any page navigation helpers for ASP.NET MVC?
What I've done for paging so far is create a Pager control,
It takes a paging url, html element id for update, page number, page size and total count.
The paging url is of the form control …
1
vote
Getting a member via string in C#?
Yes, via reflection. Take a look at the Type class and associated methods. A good place to start might be …
0
votes
Populating Childnode list: Linq confusion and separation of concerns
As for why it doesn't work, I suspect deferred execution is getting you. If you wrap the Linq query like so( from ... select p).ToList() it will cause the query to be evaluated.
…
