I've an asp.net application where I'm rendering blazor server application like following:
<div id="newFreightToolContainer" runat="server">
<embed type="text/html" src="<%= this.ResolveUrl("http://myBlazorApp/FMT?seg=pageLevel&IsHSB=0&storeId=" + SessionWrapper.RcommStoreID) %>" width="100%" height="800" frameborder="0" scrolling="auto" class="autoHeight" id="EMEA_Address_Frame" name="EMEA_Address_Frame">
</div>
Now, the problem here is I've to pass some complex object having sensitive information from the asp.net app to my blazor app so, is that possible? or is there any way by which I can share the asp.net session object to the blazor server app? Can someone plz help me out here