kish-kashta 0 Newbie Poster

hi

i am trying to Validate a from

in goes

private void Page_Load(object sender, System.EventArgs e)
    {

            if (IsPostBack) // enter values
            {
                Page.Validate();  // web validator

                if (IsValid) 
                {
                                                      // my check
                                                      //// ** //////////////
                                                   }
                                      }
           }

** I would like to pass all the field to another method
where i ccan do my own validation

any one has an idea ?