0
votes
How to validate ASPNET AJAX installation
Haven't tried this myself, but I found several forum postings recommending the following
Try and add the following to your
web.config
within
<system.webSer …
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 …
