Uncaught ReferenceError: angular is not defined
Angularjs is not added even when the file is included in Index file.
<script src="~/Scripts/CustomDet.js"></script> <script src="~/Scripts/AngularJS.js"></script>
You had palced your AngularJS script tag after the CustomDet that references AngularJS.
So place the AngularJS script before the CustomDet script.
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.