diff options
author | wei <> | 2007-01-03 08:17:41 +0000 |
---|---|---|
committer | wei <> | 2007-01-03 08:17:41 +0000 |
commit | e66a34b2bfca3bb803500c4b9c39bed73d2e4001 (patch) | |
tree | e191731f94280eba47d9f660aa398892471f167a /tests/FunctionalTests/active-controls/protected/pages/CustomValidatorByPass.page | |
parent | 258c8daf0fad79945620018a08ee84ca14b1d73e (diff) |
Update active controls to use http response body for application data.
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected/pages/CustomValidatorByPass.page')
-rw-r--r-- | tests/FunctionalTests/active-controls/protected/pages/CustomValidatorByPass.page | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/CustomValidatorByPass.page b/tests/FunctionalTests/active-controls/protected/pages/CustomValidatorByPass.page index 5cacf2ef..068d673c 100644 --- a/tests/FunctionalTests/active-controls/protected/pages/CustomValidatorByPass.page +++ b/tests/FunctionalTests/active-controls/protected/pages/CustomValidatorByPass.page @@ -2,7 +2,7 @@ <h1>Custom Login</h1>
-<com:TActiveLinkButton ID="showLogin" Attributes.OnClick="new Effect.Appear('loginBox')" Text="Login" />
+<a href="#" onclick="new Effect.Appear('loginBox')">Login</a>
<div id="loginBox" style="display: none;">
<div id="loginLoader" style="display: none;">Please Wait...</div>
@@ -28,7 +28,7 @@ <br />
<com:TActiveLinkButton ID="checkLogin" OnCallback="doLogin" Text="Login" ValidationGroup="login" />
- <com:TActiveLinkButton Attributes.OnClick="new Effect.Fade('loginBox')" Text="Close" />
+ <a href="#" onclick="new Effect.Fade('loginBox')">Close</a>
</div>
|