mh_custom/wtmProject.Shared/Shared/Outside.razor

10 lines
216 B
Plaintext
Raw Normal View History

2024-05-16 17:30:33 +08:00
@page "/Outside/{url}"
@inherits BasePage
<iframe src='@System.Web.HttpUtility.UrlDecode(url)' frameborder='0' width="100%" style="flex:auto"></iframe>
@code {
[Parameter]
public string url { get; set; }
}