Use a standard postback on the page, then do a Server.Transfer to the desired page. This will serve basically the same purpose. All the posted form values will be available but you'll need to use Request.Form to get at them instead of using member control instances.
-
Peter