visible properties of all webcomponents

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Murali

    visible properties of all webcomponents

    We r using a single aspx page for insertion ,updation and deletion of data.In each cases we want to hide a lot of web components in a single form.Now we r hiding each component using the visibility property of components.But we want to avoid this one because (eg: if there r 20 components then we have to set the visibility of each component separately)How to set visible properties of all webcomponents in the form in a single statemen

  • Evertjan.

    #2
    Re: visible properties of all webcomponents

    =?Utf-8?B?TXVyYWxp?= wrote on 15 feb 2004 in
    microsoft.publi c.inetserver.as p.general:
    [color=blue]
    > We r using a single aspx page for insertion ,updation and deletion of
    > data.[/color]

    This is a classical ASP NG.

    Please see a dot.net NG for this question.

    --
    Evertjan.
    The Netherlands.
    (Please change the x'es to dots in my emailaddress)

    Comment

    • ecPunk

      #3
      Re: visible properties of all webcomponents


      "Murali" <muralimkn@indi atimes.com> wrote in message
      news:5C10A179-B132-4F66-9131-BBAEEAB00271@mi crosoft.com...[color=blue]
      > We r using a single aspx page for insertion ,updation and deletion of[/color]
      data.In each cases we want to hide a lot of web components in a single
      form.Now we r hiding each component using the visibility property of
      components.But we want to avoid this one because (eg: if there r 20
      components then we have to set the visibility of each component
      separately)How to set visible properties of all webcomponents in the form
      in a single statement[color=blue]
      >[/color]

      I believe if you set all of the components of the form to have the same id
      that once you set the visibility of that id (using getElementByID in
      J(ava)Script) it should hide all of them. Also if the components are in a
      grouping that does not contain any of the components you wish to show you
      could probably use a span or div and set the visibilty of those.

      Neil


      Comment

      Working...