Separator in ASP.NET MVC OTP Input control

13 Jun 20241 minute to read

The separator in OTP Input specifies the character or symbol used to separate each input field in the OTP Input control. This separator is displayed between each input field to visually distinguish between each inputs. You can set the separator character by using the Separator property.

@using Syncfusion.EJ2.Inputs

<div id='container' style="width: 350px;">
    @Html.EJS().OtpInput("otpInput").Separator("/").Render()
</div>
public ActionResult Default()
{
    return View();
}

ASP.NET MVC OTP Input Control with Separator