17 lines
335 B
Plaintext
17 lines
335 B
Plaintext
@{
|
|
Layout = "~/Views/Shared/_MainLayout.cshtml";
|
|
}
|
|
<div>
|
|
<iframe src="@(ViewBag.targetUrl)" style="width:100%;height:800px" frameborder="0"></iframe>
|
|
</div>
|
|
|
|
@section JS
|
|
{
|
|
<script src="~/scripts/otc_ui/index.js"></script>
|
|
<script>
|
|
let instance = new Autocallable();
|
|
instance.init();
|
|
</script>
|
|
}
|
|
|