/
ivan
/
ModMas
Обзор
Документация
Войти
/
ivan
/
ModMas
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ModuleMaster/usercontrols/numbervalidator.ascx.vb
36 строк
855 B
i.krivokon
Initial commit
13 мар 2026, 13:49
13 мар 2026, 13:49
00d9fb6
Код
Авторство
О чём код?
Partial Class UserControls_numberValidator Inherits System.Web.UI.UserControl Public Property Text As String Set(value As String) TextBox1.Text = value End Set Get Return TextBox1.Text End Get End Property Public Property TabIndex As Short Set(value As Short) TextBox1.TabIndex = value End Set Get Return TextBox1.TabIndex End Get End Property Public Property CssClass As String Set(value As String) TextBox1.CssClass = value End Set Get Return TextBox1.CssClass End Get End Property Public Overloads ReadOnly Property Attributes As AttributeCollection Get Return TextBox1.Attributes End Get End Property End Class