You may have a property in your model, for example:
ControllerNameModel
{
...
public string LabelText {get; set;} = "my text";
}
Then in your controller you can change the label text:
public IActionResult ControllerName(ControllerNameModel model)
{
model.LabelText = "new text for label"
return View(model);
}
, , :
<label for="something">@Model.LabelText</label>
P.S.: _