I create mvc5 project.
I have iframe element in my view and @Model that I pass from controller:
@Model.MgPath = here is partial URL.
<iframe src="http://localhost/mapfat/?WEBLAYOUT=" + @Model.MgPath width="100%" height="500px"></iframe>
in @Model.MgPath I have part of the URL that I need to attach to the soucre of iframe element.
My quetion is how to attach partial URL?It seems that attitude above is wrong.