Click here to Skip to main content
15,907,687 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: ASP & Crystal Reports syntax Pin
Megan Forbes18-Sep-02 8:29
Megan Forbes18-Sep-02 8:29 
GeneralASP .NET application seems to time out Pin
MS le Roux17-Sep-02 5:50
MS le Roux17-Sep-02 5:50 
GeneralRe: ASP .NET application seems to time out Pin
Nick Parker17-Sep-02 6:03
protectorNick Parker17-Sep-02 6:03 
GeneralRe: ASP .NET application seems to time out Pin
MS le Roux17-Sep-02 6:18
MS le Roux17-Sep-02 6:18 
GeneralRe: ASP .NET application seems to time out Pin
Nick Parker17-Sep-02 6:22
protectorNick Parker17-Sep-02 6:22 
GeneralRe: ASP .NET application seems to time out Pin
MS le Roux17-Sep-02 19:58
MS le Roux17-Sep-02 19:58 
GeneralMaking expandable dataitems Pin
leppie17-Sep-02 3:55
leppie17-Sep-02 3:55 
GeneralRe: Making expandable dataitems Pin
Nick Parker17-Sep-02 6:12
protectorNick Parker17-Sep-02 6:12 
leppie,
There are several ways to do this here is a script that will work.

<script language="javascript">

function tierMenu(objMenu,objImage)
{
if (objMenu.style.display == "none")
{
objMenu.style.display = "";
objImage.src = "/pics/expand.gif";
}
else
{
objMenu.style.display = "none";
objImage.src = "/pics/collapse.gif";
}
}

</script>


<div align="left" onclick="tierMenu(menu1, img1);">
<img src="/pics/book.gif" id="img1" style="{cursor:hand;}" WIDTH="16" HEIGHT="16">
<font SIZE="2" COLOR="#006666" style="{cursor:hand;}" onmouseover="color='#669999'" onmouseout="color='#006666'">
&nbsp;&nbsp;
<b>Display Text To Be Clicked</b>
</font>
</div>
<br>
<span ID="menu1" STYLE="display: none">
<font size="2">
This is the information that will show once the display text is clicked
</font>
</span>


Nick Parker
GeneralRe: Making expandable dataitems Pin
leppie17-Sep-02 7:07
leppie17-Sep-02 7:07 
GeneralRe: Making expandable dataitems Pin
Nick Parker17-Sep-02 7:09
protectorNick Parker17-Sep-02 7:09 
GeneralConsuming Web Services... Pin
Matt Philmon16-Sep-02 11:31
Matt Philmon16-Sep-02 11:31 
GeneralRe: Consuming Web Services... Pin
Dan_P17-Sep-02 20:35
Dan_P17-Sep-02 20:35 
GeneralSet User Control Visibility to False Pin
Jason Weibel16-Sep-02 10:44
Jason Weibel16-Sep-02 10:44 
GeneralRe: Set User Control Visibility to False Pin
Jason Weibel17-Sep-02 3:23
Jason Weibel17-Sep-02 3:23 
GeneralTrace and Performance Pin
Mauricio Ritter16-Sep-02 4:02
Mauricio Ritter16-Sep-02 4:02 
GeneralRe: Trace and Performance Pin
Anonymously16-Sep-02 4:17
Anonymously16-Sep-02 4:17 
GeneralRe: Trace and Performance Pin
Mauricio Ritter16-Sep-02 4:22
Mauricio Ritter16-Sep-02 4:22 
Generalmultiple values from checkbox Pin
mcm16-Sep-02 3:57
mcm16-Sep-02 3:57 
GeneralRe: multiple values from checkbox Pin
Jeremy Falcon16-Sep-02 5:24
professionalJeremy Falcon16-Sep-02 5:24 
GeneralYes/No checkbox Pin
mcm15-Sep-02 22:39
mcm15-Sep-02 22:39 
GeneralRe: Yes/No checkbox Pin
Jeremy Falcon16-Sep-02 5:04
professionalJeremy Falcon16-Sep-02 5:04 
GeneralRe: Yes/No checkbox Pin
Paul Watson16-Sep-02 6:09
sitebuilderPaul Watson16-Sep-02 6:09 
GeneralWeb developing in VS.NET Pin
Philip Patrick15-Sep-02 3:53
professionalPhilip Patrick15-Sep-02 3:53 
GeneralRe: Web developing in VS.NET Pin
Philip Patrick15-Sep-02 10:49
professionalPhilip Patrick15-Sep-02 10:49 
GeneralSolved Pin
Philip Patrick15-Sep-02 11:32
professionalPhilip Patrick15-Sep-02 11:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.