Click here to Skip to main content
15,884,473 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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 
AnswerRe: Changing Table's Image [modified] Pin
Not Active1-Aug-11 3:18
mentorNot Active1-Aug-11 3:18 
First, FORMAT your code snippets!!!

Creating tables for one cell is extreme overkill.

<span id="text1">Text A</span>
<span id="text2">Text B</span>
<img id="pic">

<style>
span, img
{
 display:block;
}

</style>
<script>
$(document).ready(function()
{
  $("#text1").hover(function()
  {
    $("#pic").attr("src", "Sunset.jpg");
  });
  $("#text2").hover(function()
  {
    $("#pic").attr("src", "Winter.jpg");
  });
});
</script>


I know the language. I've read a book. - _Madmatt
modified on Monday, August 1, 2011 9:25 AM

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 
AnswerRe: need to display data on email Pin
Not Active30-Jul-11 13:01
mentorNot Active30-Jul-11 13:01 

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.