I have used ng-include as shown below.But it is very slow.In other words it shows tab\'s heading without the content of it.Later it loads the content.Which is r
ng-include
Here is the solution.You can use $templateCache service.
app.js
appModule.run(["$templateCache", "$http", function ($templateCache, $http) { $http.get('~/App/tenant/views/propertymanagement/tabs/createPropertyForm.cshtml', { cache: $templateCache }); }]);
cshtml page