blob: 0a4a36b4ff50bbacfcf3793bb94e7461901e999b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html>
<head>
<title>Hello World Demo - Prado</title>
</head>
<body>
<com:TForm>
<com:TCaptcha ID="Captcha" CaseSensitive="true" MaxTokenLength="5" />
<com:TTextBox ID="Input" />
<com:TButton Text="Click me" OnClick="buttonClicked" />
<com:TCaptchaValidator EnableClientScript="true" ControlToValidate="Input" CaptchaControl="Captcha" Text="invalid" />
</com:TForm>
</body>
</html>
|