Quantcast
Channel: Active questions tagged blazor - Stack Overflow
Viewing all articles
Browse latest Browse all 4839

How to render page inside an other page?

$
0
0

Is there an option in blazor to load a page inside an other page. A version of Html.RenderPartial("page");

This is what I have in asp.net core

<div class="row"><div class="col-md-3"><div class="nav flex-column nav-pills" id="v-pills-tab" role="tablist" aria-orientation="vertical"><a class="nav-link active" id="v-pills-setting-tab" data-toggle="pill" href="#v-pills-setting" role="tab" aria-controls="v-pills-setting" aria-selected="true">Setting</a><a class="nav-link" id="v-pills-intent-tab" data-toggle="pill" href="#v-pills-intent" role="tab" aria-controls="v-pills-intent" aria-selected="false">Intents</a><a class="nav-link" id="v-pills-train-tab" data-toggle="pill" href="#v-pills-train" role="tab" aria-controls="v-pills-train" aria-selected="false">Train</a></div></div><div class="col-md-9"><div class="tab-content" id="v-pills-tabContent"><div class="tab-pane fade show active" id="v-pills-setting" role="tabpanel" aria-labelledby="v-pills-setting-tab">                @{                    Html.RenderPartial("Setting");                }</div><div class="tab-pane fade" id="v-pills-intent" role="tabpanel" aria-labelledby="v-pills-intent-tab">                @{                    Html.RenderPartial("Intents");                }</div><div class="tab-pane fade" id="v-pills-train" role="tabpanel" aria-labelledby="v-pills-train-tab">                @{                    Html.RenderPartial("../Conversation/Index");                }</div></div></div></div>

I am just unsure on how I could reproduce something like this in blazor. I look at layout, but I dont want to override the full layout, i just want to seperate my entity between pages.


Viewing all articles
Browse latest Browse all 4839

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>