If you're using standard validation controls, data is always re-verified on the server even if client side validation is specified.
See the note in this article right after figure 2:, which says:
Double-Checking Client-Side Validation
One interesting point is that even
though the form data is validated on
the client (eliminating the need for
additional requests to and responses
from the server to validate the data),
the data entered is re-verified on the
server. After the data is checked on
the client and found valid, it is
rechecked on the server using the same
validation rules. These are rules that
you establish to ensure against some
tricky programmer out there trying to
bypass the validation process by
posting the page to the server as if
it passed validation.
http://msdn.microsoft.com/en-us/library/aa479013.aspx
However, you can force validation on the server by calling Page.Validate()