Few things - Validation, Tables etc

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Re: Few things - Validation, Tables etc

    not xctly sure what you're asking, but are you aware there is a .IsValid()
    method on the page that you can use in code behind that will return a bool
    based on whether all post data validates to all defined validation controls
    on your page.

    for the cell height, use the height style on the row that contains the cell.

    <tr style="height:200px">


    "Vincent V" <vincentv@-n0-5pam-optushome.com.au> wrote in message
    news:%23K$vYHnVDHA.2236@TK2MSFTNGP12.phx.gbl...
    > Hey a couple of questions
    >
    > I have multiple usercontrols on my page + buttons that Cuase validations
    > the issue is that the page validates as a whole and you cannot Group
    > validate
    >
    > the work around i am using is to disable all validators on the page then
    > enable all validators on my control container
    > the worry i have here is at the point when validation on the page is
    > disabled this may leave some
    > fields open to hackers and problematic data if the spoof the page? any
    ideas
    > around this
    >
    > The other issue i have is that i have a large cell and i want to put a
    table
    > within the cell and specify height of 80%
    > but this does not work properly
    > any ideas on these
    > Thanks
    >
    >

    PJ Guest

  2. Similar Questions and Discussions

    1. CFFORM validation trumping Custom Validation
      Is there any way for custom form validation to work in concert with the cfform validation? I have a custom script that compares the values of two...
    2. CFFORM Validation trumping Custom Form Validation
      Is there any way for custom form validation to work in concert with the cfform validation? I have a custom script that compares the values of two...
    3. OT: For when things are getting TOO serious...
      You gotta check http://www.createafart.com/index.asp time-waster out! Not for those of a "delicate" disposition! Heh! John Mc ...
    4. validation summary doesnt display when there's client-side validation
      I have a custom validator that validates a numeric field, txtField, that allows for thousand separators. I also placed a validation summary so...
    5. only custom validation control does server side validation?
      On a CustomValidator you have to provide the validation code because otherwise it doesn't know what to do for the validation. Other validator...
  3. #2

    Default Few things - Validation, Tables etc

    Hey a couple of questions

    I have multiple usercontrols on my page + buttons that Cuase validations
    the issue is that the page validates as a whole and you cannot Group
    validate

    the work around i am using is to disable all validators on the page then
    enable all validators on my control container
    the worry i have here is at the point when validation on the page is
    disabled this may leave some
    fields open to hackers and problematic data if the spoof the page? any ideas
    around this

    The other issue i have is that i have a large cell and i want to put a table
    within the cell and specify height of 80%
    but this does not work properly
    any ideas on these
    Thanks


    Vincent V Guest

  4. #3

    Default Re: Few things - Validation, Tables etc

    in reguards to validation
    on my page i might have 3 different panels
    one for sighning up
    one for logging in
    one for sighning up for news letter
    these 3 panels are unrelated
    so just say u want to login u enter ur username and password - all the
    validators on the page will fire(sign up validators, news letter validators)
    because the page is one entity
    i need to be able to validate panels or controsl with child controls not the
    whole page

    "PJ" <pjwalNOSPAM@hotmail.com> wrote in message
    news:#kFlKnnVDHA.624@TK2MSFTNGP10.phx.gbl...
    > not xctly sure what you're asking, but are you aware there is a .IsValid()
    > method on the page that you can use in code behind that will return a bool
    > based on whether all post data validates to all defined validation
    controls
    > on your page.
    >
    > for the cell height, use the height style on the row that contains the
    cell.
    >
    > <tr style="height:200px">
    >
    >
    > "Vincent V" <vincentv@-n0-5pam-optushome.com.au> wrote in message
    > news:%23K$vYHnVDHA.2236@TK2MSFTNGP12.phx.gbl...
    > > Hey a couple of questions
    > >
    > > I have multiple usercontrols on my page + buttons that Cuase validations
    > > the issue is that the page validates as a whole and you cannot Group
    > > validate
    > >
    > > the work around i am using is to disable all validators on the page then
    > > enable all validators on my control container
    > > the worry i have here is at the point when validation on the page is
    > > disabled this may leave some
    > > fields open to hackers and problematic data if the spoof the page? any
    > ideas
    > > around this
    > >
    > > The other issue i have is that i have a large cell and i want to put a
    > table
    > > within the cell and specify height of 80%
    > > but this does not work properly
    > > any ideas on these
    > > Thanks
    > >
    > >
    >
    >

    Vincent V Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139