User1396448631 posted
Hi Fei Han,
My project has a bunch of aspx (containing pure html code), js and asmx web service files. I dont have any controller in c#
The first link you sent has the home controller in c#. Do I really need that?
I already have an angularjs controller something like this
function () {
"use strict";
var app = angular.module('CPFWeb', ['ngRoute']);
app.config(function ($routeProvider) {
$routeProvider
.when('/', {
templateUrl: '../Default.aspx'
})
....
I am using asmx instead of web api.
Please suggest your thoughts?
Thank you