disscussion board +asp.net 2.0+c#
-
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...
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 )
-
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...
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
-
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...
-
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
Please explain clearly your problem.
only two letters away from being an asset
-
Please explain clearly your problem.
only two letters away from being an asset
-
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.
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
-
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.
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 )