I'm using the following code in the view to create a file uploader functionality.
This creates a button which opens the file explorer on click.
What I need is
to change the button name from choose file which is the default name to something else and the no file chosen as well.
<div class="form-group">
@Html.LabelFor(model => model.Cert, new { @class = "control-label col-md-2" })
<div class="col-md-10">
<input type="file" />
</div>
</div>