Click here to Skip to main content
15,886,780 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Receive stock quotes asp.net Pin
R. Giskard Reventlov2-Aug-11 7:20
R. Giskard Reventlov2-Aug-11 7:20 
GeneralRe: Receive stock quotes asp.net Pin
Rupert Koan2-Aug-11 9:47
Rupert Koan2-Aug-11 9:47 
QuestionButton loses link to event after postback Pin
Dominick Marciano1-Aug-11 11:01
professionalDominick Marciano1-Aug-11 11:01 
QuestionConfigurationManager.GetSection method Pin
indian1431-Aug-11 9:38
indian1431-Aug-11 9:38 
AnswerRe: ConfigurationManager.GetSection method Pin
Shameel4-Aug-11 23:16
professionalShameel4-Aug-11 23:16 
QuestionError checking in application Pin
vanikanc1-Aug-11 2:58
vanikanc1-Aug-11 2:58 
AnswerRe: Error checking in application Pin
Not Active1-Aug-11 3:14
mentorNot Active1-Aug-11 3:14 
QuestionChanging Table's Image [modified] Pin
Eddie19871-Aug-11 2:57
Eddie19871-Aug-11 2:57 
I want that when i will enter the TextA i will see on the third table pic b (Winter)
and when i will enter TextB i will see on the third table pic c (Sunset)
Please help !!!

<%--When mouse will be over the text then i want the third table will show pic (Winter)--%>
<table width="100%" style="height:100px">
<tr>
<td onmouseover="showPic('Winter');" width="100%" style="height:100%">
ChangeToPicA -> The Text
</td>
</tr>
</table>
<%--When mouse will be over the text then i want the third table will show pic (Sunset)--%>
<table width="100%" style="height:100px">
<tr>
<td onmouseover="showPic('Sunset');" width="100%" style="height:100%">
ChangeToPicB -> The Text
</td>
</tr>
</table>
<%--The third table which need to change the pictures--%>
<table id="Sunset" class="pichide" width="100%" style="height:250px">
<tr>
<td width="100%" style="height:100%">
</td>
</tr>
</table>

JScript2.js
function showPic(id)
{
document.getElementById("Sunset").className = "c";
document.getElementById("Winter").className = "b";

document.getElementById(id).className = "picshow";
}

stylesheet.css
.c
{
background-image: url('Sunset.jpg');
background-repeat:no-repeat;
}

.b
{
background-image: url('Winter.jpg');
background-repeat:no-repeat;
}

.pichide
{
display: none;
}

.picshow
{
display: block;
border: 1px;
}



-- Modified Monday, August 1, 2011 9:18 AM
AnswerRe: Changing Table's Image [modified] Pin
Not Active1-Aug-11 3:18
mentorNot Active1-Aug-11 3:18 
GeneralRe: Changing Table's Image Pin
Eddie19871-Aug-11 3:23
Eddie19871-Aug-11 3:23 
Questionremoving aspx extension Pin
benams31-Jul-11 22:44
benams31-Jul-11 22:44 
Questiononfocus postback problem Pin
minckle31-Jul-11 12:06
minckle31-Jul-11 12:06 
AnswerRe: onfocus postback problem Pin
Not Active31-Jul-11 13:24
mentorNot Active31-Jul-11 13:24 
GeneralRe: onfocus postback problem [modified] Pin
minckle1-Aug-11 13:30
minckle1-Aug-11 13:30 
GeneralRe: onfocus postback problem Pin
Not Active1-Aug-11 14:24
mentorNot Active1-Aug-11 14:24 
Questionhow to get previous page and details remain Pin
Cyberoxy31-Jul-11 9:50
Cyberoxy31-Jul-11 9:50 
AnswerRe: how to get previous page and details remain Pin
Not Active31-Jul-11 13:22
mentorNot Active31-Jul-11 13:22 
AnswerRe: how to get previous page and details remain Pin
Bernhard Hiller31-Jul-11 19:45
Bernhard Hiller31-Jul-11 19:45 
QuestionHow to replace image onmouseover Pin
Eddie198730-Jul-11 9:12
Eddie198730-Jul-11 9:12 
AnswerRe: How to replace image onmouseover Pin
Shahriar Iqbal Chowdhury/Galib31-Jul-11 4:16
professionalShahriar Iqbal Chowdhury/Galib31-Jul-11 4:16 
GeneralRe: How to replace image onmouseover Pin
Eddie19871-Aug-11 1:09
Eddie19871-Aug-11 1:09 
GeneralRe: How to replace image onmouseover Pin
Not Active1-Aug-11 2:08
mentorNot Active1-Aug-11 2:08 
QuestionHave Session in Global.asax File Pin
Member 322226430-Jul-11 6:29
Member 322226430-Jul-11 6:29 
AnswerRe: Have Session in Global.asax File Pin
Keith Barrow30-Jul-11 8:23
professionalKeith Barrow30-Jul-11 8:23 
Questionneed to display data on email Pin
CyberHeart 230-Jul-11 6:20
CyberHeart 230-Jul-11 6:20 

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.