Click here to Skip to main content
16,015,667 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionSession State Pin
Senthil_M2-May-07 23:24
Senthil_M2-May-07 23:24 
AnswerRe: Session State Pin
kubben3-May-07 2:56
kubben3-May-07 2:56 
Questionloosing data between postbacks [modified] Pin
Ayman Mashal2-May-07 22:25
Ayman Mashal2-May-07 22:25 
AnswerRe: loosing data between postbacks Pin
kubben3-May-07 2:54
kubben3-May-07 2:54 
GeneralRe: loosing data between postbacks Pin
Ayman Mashal5-May-07 18:56
Ayman Mashal5-May-07 18:56 
GeneralRe: loosing data between postbacks Pin
kubben6-May-07 1:02
kubben6-May-07 1:02 
QuestionDreamWeaver Dream Pin
matjame2-May-07 22:05
matjame2-May-07 22:05 
AnswerRe: DreamWeaver Dream Pin
steffw2-May-07 22:18
steffw2-May-07 22:18 
hmm, you want a menu? Look for some easy javascript Smile | :)

This is an simple example, its not working super but i hope i can make my point with this!

<code>

<html>
<head>

<style type="text/css">
#MenuItem{
width:150px;
border-style:solid;
height:25;
}
#subMenuItem{
width:150px;
visibility:hidden;
border-style:solid;
}
</style>

<script type="text/javascript">

function openMenu(objID)
{
document.getElementById(objID).style.visibility = 'visible';
}
function closeMenu(objID)
{
document.getElementById(objID).style.visibility = 'hidden';
}
</script>
</head>
<body>

<div id="MenuItem" onMouseOver="openMenu('SubMenuItem')">My Links</div>
<div id="SubMenuItem" onMouseOut="closeMenu('SubMenuItem')">
<lu>
<li>Link item</li>
<li>Link item</li>
<li>Link item</li>
<li>Link item</li>
</lu>
</div>

</body>
</html>

</code>

Stef
QuestionSearch code Pin
Stormint2-May-07 21:40
Stormint2-May-07 21:40 
AnswerRe: Search code Pin
Sathesh Sakthivel2-May-07 21:49
Sathesh Sakthivel2-May-07 21:49 
AnswerRe: Search code Pin
Sandeep Akhare2-May-07 22:00
Sandeep Akhare2-May-07 22:00 
QuestionSVG ( Scalable Vector Graphics) Pin
jayarajmrj2-May-07 21:28
jayarajmrj2-May-07 21:28 
AnswerRe: SVG ( Scalable Vector Graphics) Pin
badgrs2-May-07 22:48
badgrs2-May-07 22:48 
QuestionUrgent Role based menu question. Pin
coolestCoder2-May-07 20:48
coolestCoder2-May-07 20:48 
AnswerRe: Urgent Role based menu question. Pin
Sandeep Akhare2-May-07 21:04
Sandeep Akhare2-May-07 21:04 
QuestionSerial No Pin
Mkanchha2-May-07 20:41
Mkanchha2-May-07 20:41 
AnswerRe: Serial No Pin
Sathesh Sakthivel2-May-07 20:44
Sathesh Sakthivel2-May-07 20:44 
GeneralRe: Serial No Pin
Mkanchha2-May-07 21:04
Mkanchha2-May-07 21:04 
GeneralRe: Serial No Pin
Sathesh Sakthivel2-May-07 21:47
Sathesh Sakthivel2-May-07 21:47 
AnswerRe: Serial No Pin
RaghuSanta2-May-07 21:36
RaghuSanta2-May-07 21:36 
GeneralRe: Serial No Pin
Sathesh Sakthivel2-May-07 23:27
Sathesh Sakthivel2-May-07 23:27 
QuestionOLEDB vs SQLClient Pin
Sujit Mandal2-May-07 20:08
Sujit Mandal2-May-07 20:08 
AnswerRe: OLEDB vs SQLClient Pin
Kunal P2-May-07 20:40
Kunal P2-May-07 20:40 
QuestionDrag Drop File In Asp.net Pin
www.suniltvl.in2-May-07 19:43
www.suniltvl.in2-May-07 19:43 
AnswerRe: Drag Drop File In Asp.net Pin
RichardGrimmer3-May-07 5:40
RichardGrimmer3-May-07 5:40 

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.