singlepage

ASP.NET and IsNew on the page level

Never seen this before in ASP.NET development. I'm trying to refactor out 40 single-page ASP.NET pages to code-behind style. What does this code do? // Validate required parameters (if "new", then nothing is required) if (!this.IsNew()) { if (string.IsNullOrEmpty(_billId)) { responseErrorNo = 4; Utils.SendError(respErrNum);...

Best practices managing JavaScript on a single-page app

With a single page app, where I change the hash and load and change only the content of the page, I'm trying to decide on how to manage the JavaScript that each "page" might need. I've already got a History module monitoring the location hash which could look like domain.com/#/company/about, and a Page class that will use XHR to get the...

Recommended Javascript Framework for Single-Page-Applications

Which Javascript Framework do you recommend me to create a medium-large size Single-Page web application? These are some alternatives I'm considering at this point: JavascriptMVC Sammy SproutCore Make my own customized implementation on top of jquery I plan to make use with ASP.NET in the server side, in case it matters. ...