Ive got a login page , and what i want to happen is when the user logs in it checks an expiry date which is stored in a Access DB , and if the account has expired it prompts the user and then redirects the user to another page.
This is the code that i tried but it didnt seem to work:
<CODE>
if rsDate.fields("ExpiryDate").value = Now() then
response.write "Sorry your account has expired"
response.redirect "expired.htm"
end if
</CODE>
Bookmarks