Hidden parts of the page in ASP.NET???

Ask a Question related to ASP.NET Data Grid Control, Design and Development.

  1. #1

    Default Hidden parts of the page in ASP.NET???

    Hi!!

    can someone tell me where I can gind some information to get this cool
    feature to hidde text as it's used in the ASP.NET Forums beta search ???

    like here: [url]http://www.asp.net/Forums/Search/SearchResults.aspx?q=development[/url]

    need I a special control???


    best regards,


    gicio


    Guest

  2. Similar Questions and Discussions

    1. Web Parts for Customer page customisations
      Hi, We are porting our windows app to an ASP.Net/AJAX solution. VS2008/SQL 2005 One of the requirements is that the customer should be able to...
    2. "Deleted Hidden Page And Image Content" - Doesn't work?
      Hi All Whenever I try and crop a PDF all the cropped information is still in the document. Granted it is hidden/masked but it is still there. When...
    3. Accessing hidden controls on ascx page
      I have a hidden control <input id="FieldSortOrder" type="hidden" name="FieldSortOrder" runat="server"> in a ascx page. I want to store some value...
    4. Hyperlink to move from top of page to other parts
      I am using Publisher 2003 to build my first internet site. I see that a common practice for long pages is to provide a hyperlink from the top of the...
    5. Auto page numbers hidden behind placed graphic
      Hi- I added Auto-page numbers onto my master page but when I checked a few of the following pages, the numbers weren't there. I realized that they...
  3. #2

    Default Re: Hidden parts of the page in ASP.NET???

    It's most likely just a DIV tag with a style="display:'none';" and an
    onClick to change it.


    --
    Curt Christianson
    Owner/Lead Developer, DF-Software
    [url]www.Darkfalz.com[/url]


    <gicio@gmx.de> wrote in message news:c0qsek$1abuug$1@news.hansenet.net...
    > Hi!!
    >
    > can someone tell me where I can gind some information to get this cool
    > feature to hidde text as it's used in the ASP.NET Forums beta search ???
    >
    > like here:
    [url]http://www.asp.net/Forums/Search/SearchResults.aspx?q=development[/url]
    >
    > need I a special control???
    >
    >
    > best regards,
    >
    >
    > gicio
    >
    >

    Curt_C [MVP] Guest

  4. #3

    Default Re: Hidden parts of the page in ASP.NET???

    Hi!

    and thx for the info!
    can you give me a code sample how to make it?

    regards,

    gicio


    "Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
    news:uE9UG3K9DHA.2644@TK2MSFTNGP11.phx.gbl...
    > It's most likely just a DIV tag with a style="display:'none';" and an
    > onClick to change it.
    >
    >
    > --
    > Curt Christianson
    > Owner/Lead Developer, DF-Software
    > [url]www.Darkfalz.com[/url]
    >
    >
    > <gicio@gmx.de> wrote in message news:c0qsek$1abuug$1@news.hansenet.net...
    > > Hi!!
    > >
    > > can someone tell me where I can gind some information to get this cool
    > > feature to hidde text as it's used in the ASP.NET Forums beta search ???
    > >
    > > like here:
    > [url]http://www.asp.net/Forums/Search/SearchResults.aspx?q=development[/url]
    > >
    > > need I a special control???
    > >
    > >
    > > best regards,
    > >
    > >
    > > gicio
    > >
    > >
    >
    >

    Guest

  5. #4

    Default Re: Hidden parts of the page in ASP.NET???

    untested...but....

    <div id=myDiv1
    onClick="myDiv2.style.display='block';myDiv1.style .display='none';">This is
    the text....</div>
    <div id=myDiv2 style="display:'none'>This is the, including hidden</div>

    It's all clientside in this case though, so hit a javascript group up.

    --
    Curt Christianson
    Owner/Lead Developer, DF-Software
    [url]www.Darkfalz.com[/url]


    <gicio@gmx.de> wrote in message news:c0qtnp$1a9qe3$1@news.hansenet.net...
    > Hi!
    >
    > and thx for the info!
    > can you give me a code sample how to make it?
    >
    > regards,
    >
    > gicio
    >
    >
    > "Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
    > news:uE9UG3K9DHA.2644@TK2MSFTNGP11.phx.gbl...
    > > It's most likely just a DIV tag with a style="display:'none';" and an
    > > onClick to change it.
    > >
    > >
    > > --
    > > Curt Christianson
    > > Owner/Lead Developer, DF-Software
    > > [url]www.Darkfalz.com[/url]
    > >
    > >
    > > <gicio@gmx.de> wrote in message
    news:c0qsek$1abuug$1@news.hansenet.net...
    > > > Hi!!
    > > >
    > > > can someone tell me where I can gind some information to get this cool
    > > > feature to hidde text as it's used in the ASP.NET Forums beta search
    ???
    > > >
    > > > like here:
    > > [url]http://www.asp.net/Forums/Search/SearchResults.aspx?q=development[/url]
    > > >
    > > > need I a special control???
    > > >
    > > >
    > > > best regards,
    > > >
    > > >
    > > > gicio
    > > >
    > > >
    > >
    > >
    >
    >

    Curt_C [MVP] 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