I am trying to add a label using Response.Write
<div>
@if (ViewBag.Message == "1")
{
Response.Write(Html.Label("text"));
}
</div>
It works, however the text shows on the top of the screen not in the correct position, did not have this problem in aspx views.
Would appreciate your suggestions.
There is no need of
Response.Write()in MVC(MVC is not Webforms) ,just try this code :-