Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. disscussion board +asp.net 2.0+c#

disscussion board +asp.net 2.0+c#

Scheduled Pinned Locked Moved ASP.NET
csharpasp-nethelp
8 Posts 5 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    R Offline
    regin
    wrote on last edited by
    #1

    i want to create a disscussion board like this..i done half way thru. but the message popup n popout like this messages is not possible...hw can i do that plz help me out...

    C S N 3 Replies Last reply
    0
    • R regin

      i want to create a disscussion board like this..i done half way thru. but the message popup n popout like this messages is not possible...hw can i do that plz help me out...

      C Offline
      C Offline
      Christian Graus
      wrote on last edited by
      #2

      Do you mean having a popup window come up in your web app ? The first[^] hit is an article on this very site.

      Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

      1 Reply Last reply
      0
      • R regin

        i want to create a disscussion board like this..i done half way thru. but the message popup n popout like this messages is not possible...hw can i do that plz help me out...

        S Offline
        S Offline
        Sathesh Sakthivel
        wrote on last edited by
        #3

        Please clearly explain what is your problem?

        Regards, Satips.:rose: Don't walk in front of me, I may not follow; Don't walk behind me, I may not lead; Walk beside me, and just be my friend. - Albert Camus

        N 1 Reply Last reply
        0
        • R regin

          i want to create a disscussion board like this..i done half way thru. but the message popup n popout like this messages is not possible...hw can i do that plz help me out...

          N Offline
          N Offline
          N a v a n e e t h
          wrote on last edited by
          #4

          See the viewsource of this page


          My Website | Ask smart questions

          1 Reply Last reply
          0
          • S Sathesh Sakthivel

            Please clearly explain what is your problem?

            Regards, Satips.:rose: Don't walk in front of me, I may not follow; Don't walk behind me, I may not lead; Walk beside me, and just be my friend. - Albert Camus

            N Offline
            N Offline
            Not Active
            wrote on last edited by
            #5

            Please explain clearly your problem.


            only two letters away from being an asset

            R 1 Reply Last reply
            0
            • N Not Active

              Please explain clearly your problem.


              only two letters away from being an asset

              R Offline
              R Offline
              regin
              wrote on last edited by
              #6

              i need to create a disscussion board like this disscussion board..in that i want to show only the subject 1st ..after clicking on subject only the message should show.if i click it again it should be invisible.

              N C 2 Replies Last reply
              0
              • R regin

                i need to create a disscussion board like this disscussion board..in that i want to show only the subject 1st ..after clicking on subject only the message should show.if i click it again it should be invisible.

                N Offline
                N Offline
                Not Active
                wrote on last edited by
                #7

                Your problem was clearly explained and answered. I asked Satips to explain his problem, what is gained by being a troll.


                only two letters away from being an asset

                1 Reply Last reply
                0
                • R regin

                  i need to create a disscussion board like this disscussion board..in that i want to show only the subject 1st ..after clicking on subject only the message should show.if i click it again it should be invisible.

                  C Offline
                  C Offline
                  Christian Graus
                  wrote on last edited by
                  #8

                  OK - then the answer I gave you doesn't really help, I didn't get that from what you said. To get messages to show and hide, you need to put them in a div ( a div tag does nothing by create a DIVision, it's used for grouping ) and then you'd use javascript to set the visiblity of each div when it's clicked on, something like function showMessage(messageId) { var message = document.getElementById(messageId); if (message) { message.style.display = "block"; } } function hideMessage(messageId) { var message = document.getElementById(messageId); if (message) { message.style.display = "none"; } } Of course, these could be merged into a function that toggles a message. Then, an onclick for each header, would pass through the id of the div containing it's body.

                  Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

                  1 Reply Last reply
                  0
                  Reply
                  • Reply as topic
                  Log in to reply
                  • Oldest to Newest
                  • Newest to Oldest
                  • Most Votes


                  • Login

                  • Don't have an account? Register

                  • Login or register to search.
                  • First post
                    Last post
                  0
                  • Categories
                  • Recent
                  • Tags
                  • Popular
                  • World
                  • Users
                  • Groups