Click here to Skip to main content
16,005,552 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Locking/Freezing every thing while running .aspx application???? Pin
keyboard warrior21-May-08 5:34
keyboard warrior21-May-08 5:34 
GeneralRe: Locking/Freezing every thing while running .aspx application???? Pin
eyeseetee21-May-08 21:36
eyeseetee21-May-08 21:36 
GeneralRe: Locking/Freezing every thing while running .aspx application???? Pin
keyboard warrior23-May-08 10:42
keyboard warrior23-May-08 10:42 
Questionsubscript and superscript in textbox Pin
saud_a_k21-May-08 3:35
saud_a_k21-May-08 3:35 
AnswerRe: subscript and superscript in textbox Pin
Sam Xavier21-May-08 7:53
Sam Xavier21-May-08 7:53 
QuestionFound a low surrogate char without a preceding high surrogate at index: 367 ... Pin
RAO KAMRAN ANWAR21-May-08 1:56
RAO KAMRAN ANWAR21-May-08 1:56 
AnswerRe: Found a low surrogate char without a preceding high surrogate at index: 367 ... Pin
Imtiaz Aarif21-May-08 4:01
Imtiaz Aarif21-May-08 4:01 
QuestionExpand/Collapse Panels Pin
S.Aijaz21-May-08 1:44
S.Aijaz21-May-08 1:44 
Hello Everybody
plz help

I have three ASP Panel controls and three image buttons in my page
onmouseover of image1 Panel1 Expands and others collapse. similarly on image2 panels2 and on image3 Panel3 Expands. This all is handled in javascript. everything is working fine except that
"i want panel to expand and collapse slowly"
which human eye can judge.

Code is given below:

<script language="javascript" type="text/javascript">

var Imag2=null;
var Imag3=null;
var Imag4=null;
var Pnl1=null;
var Pnl2=null;
var Pnl3=null;


window.onload = function()
{
Pnl1 = document.getElementById('Panel1');
Pnl2 = document.getElementById('Panel2');
Pnl3 = document.getElementById('Panel3');
Imag2 = document.getElementById('Image2');
Imag3 = document.getElementById('Image3');
Imag4 = document.getElementById('Image4');

Pnl1.style.display = 'block';
Pnl2.style.display = 'none';
Pnl3.style.display = 'none';
Imag2.style.display = 'none';
Imag3.style.display = 'block';
Imag4.style.display = 'block';

}

function Panel1(Image)
{
Pnl1.style.display = 'block';
Pnl2.style.display = 'none';
Pnl3.style.display = 'none';
Imag2.style.display = 'none';
Imag3.style.display = 'block';
Imag4.style.display = 'block';
}


function Panel2(Image)
{
Pnl1.style.display = 'none';
Pnl2.style.display = 'block';
Pnl3.style.display = 'none';
Imag2.style.display = 'block';
Imag3.style.display = 'none';
Imag4.style.display = 'block';
}

function Panel3(Image)
{
Pnl1.style.display = 'none';
Pnl2.style.display = 'none';
Pnl3.style.display = 'block';
Imag2.style.display = 'block';
Imag3.style.display = 'block';
Imag4.style.display = 'none';
}

</script>


<table style="vertical-align: top" cellpadding="0" cellspacing="0" border="0">
<tr>
<td valign="top">
asp:Image ImageUrl="~/images/EOM.jpg" onmouseover="javascript:Panel1(this);" Width="93"
Height="337" ID="Image2" runat="server" />
</td>
<td valign="top" style="background-color: MintCream">
<asp:Panel ID="Panel1" Width="450" Height="337" runat="server">
<uc1:WUC_EOM ID="WUC_EOM1" runat="server" />
</asp:Panel>
</td>
<td valign="top">
<asp:Image ImageUrl="~/images/BD.jpg" onmouseover="javascript:Panel2(this);" Width="93"
Height="337" ID="Image3" runat="server" />
</td>
<td align="center" valign="top" style="background-color: MintCream">
<asp:Panel ID="Panel2" Width="450" Height="337" runat="server">
<uc2:WUC_BDay ID="WUC_BDay1" runat="server" />
</asp:Panel>
</td>
<td valign="top">
<asp:Image ImageUrl="~/images/eVENT.JPG" onmouseover="javascript:Panel3(this);" Width="93"
Height="337" ID="Image4" runat="server" />
</td>
<td align="center" valign="top" style="background-color: MintCream">
<asp:Panel ID="Panel3" Width="450" Height="337" runat="server">
<uc3:WUC_Events ID="WUC_Events1" runat="server" />
</asp:Panel>
</td>
</tr>
</table>
AnswerRe: Expand/Collapse Panels Pin
Christian Graus21-May-08 1:45
protectorChristian Graus21-May-08 1:45 
GeneralInfo req for UIPAB & EWorldUI Calendar Control Pin
vamsimohan2121-May-08 1:28
vamsimohan2121-May-08 1:28 
GeneralRe: Info req for UIPAB & EWorldUI Calendar Control Pin
eyeseetee21-May-08 2:22
eyeseetee21-May-08 2:22 
Questionhow to get selected value from dynamically created dropdownlistbox which is placed in placeholder Pin
vidhyap21-May-08 1:17
vidhyap21-May-08 1:17 
AnswerRe: how to get selected value from dynamically created dropdownlistbox which is placed in placeholder Pin
Christian Graus21-May-08 1:18
protectorChristian Graus21-May-08 1:18 
GeneralRe: how to get selected value from dynamically created dropdownlistbox which is placed in placeholder Pin
vidhyap21-May-08 1:50
vidhyap21-May-08 1:50 
GeneralRe: how to get selected value from dynamically created dropdownlistbox which is placed in placeholder [modified] Pin
Sandeep Akhare21-May-08 3:01
Sandeep Akhare21-May-08 3:01 
GeneralRe: how to get selected value from dynamically created dropdownlistbox which is placed in placeholder Pin
vidhyap21-May-08 17:12
vidhyap21-May-08 17:12 
GeneralRe: how to get selected value from dynamically created dropdownlistbox which is placed in placeholder Pin
vidhyap21-May-08 19:06
vidhyap21-May-08 19:06 
Questionchange datetime format Pin
venkat86_ece21-May-08 1:08
venkat86_ece21-May-08 1:08 
AnswerRe: change datetime format Pin
Christian Graus21-May-08 1:09
protectorChristian Graus21-May-08 1:09 
GeneralRe: change datetime format Pin
venkat86_ece21-May-08 1:19
venkat86_ece21-May-08 1:19 
GeneralRe: change datetime format Pin
Christian Graus21-May-08 1:22
protectorChristian Graus21-May-08 1:22 
GeneralRe: change datetime format Pin
venkat86_ece21-May-08 1:41
venkat86_ece21-May-08 1:41 
GeneralRe: change datetime format Pin
Christian Graus21-May-08 1:43
protectorChristian Graus21-May-08 1:43 
AnswerRe: change datetime format Pin
gnjunge21-May-08 21:07
gnjunge21-May-08 21:07 
AnswerRe: change datetime format Pin
gnjunge21-May-08 21:15
gnjunge21-May-08 21:15 

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.