Currently attempting to insert a label using Response.Write
<div>
@if (ViewBag.Message == "1")
{
Response.Write(Html.Label("text"));
}
</div>
Although it is functioning, the text appears at the top of the screen instead of the intended position. This issue was not present in aspx views.
Welcome any advice or recommendations.