I'm starting a somewhat greenfield web application that needs to run within a .net 3.5 webforms website, but otherwise will be detached in terms of interactivity with the current site. I am trying to design an architecture that would minimize or eliminate the use of webforms. So far I've come up with using wcf web services in json (web api is unfortunately not an option due to the 3.5 restriction) and having Knockout.js exclusively on the client side. Ideally I would not add aspx pages but straight html pages to build the UI front.
1) Is this possible/reasonable?
2) Would I be able to implement asp.net utility functionality like windows authentication and user roles access security using html pages with knockout.js instead of aspx pages?