Imports GrapeCity.Web.Input.Core
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If Not IsPostBack Then
GcComboBox1.Format.Pattern = "郵便番号:\D{3}-\D{4}"
GcComboBox1.CursorPosition = 0
GcComboBox1.HighlightText = HighlightText.Field
End If
End Sub
using GrapeCity.Web.Input.Core;
private void Page_Load(object sender, System.EventArgs e)
{
if(!IsPostBack)
{
GcComboBox1.Format.Pattern = "郵便番号:\\D{3}-\\D{4}";
GcComboBox1.CursorPosition = 0;
GcComboBox1.HighlightText = HighlightText.Field;
}
}