I made an application in Angular 5 and it must be loaded in an aspx page; I tried using an iframe but it does not load me, so my second option was to use jQuery and load the page in a div:
this is my code
<script>
$(document).ready(function () {
console.log("ready!");
$("#angular").load('https://localhost:4200');
});
</script>
<body>
<form id="form1" runat="server">
<div>
<iframe src="https://localhost:4200"></iframe>
</div>
<div id="angular"></div>
</form>
</body>