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

ASP.NET

 
GeneralRe: AJAX not working in IE for asp.net2 Pin
Deepml20-Apr-07 1:17
Deepml20-Apr-07 1:17 
GeneralRe: AJAX not working in IE for asp.net2 Pin
Sam Heller20-Apr-07 1:30
Sam Heller20-Apr-07 1:30 
GeneralRe: AJAX not working in IE for asp.net2 Pin
RichardGrimmer20-Apr-07 5:02
RichardGrimmer20-Apr-07 5:02 
AnswerRe: AJAX not working in IE for asp.net2 [Urgent] Pin
coolestCoder20-Apr-07 1:33
coolestCoder20-Apr-07 1:33 
GeneralRe: AJAX not working in IE for asp.net2 [Urgent] Pin
Deepml20-Apr-07 1:47
Deepml20-Apr-07 1:47 
QuestionImage to appear after the page load Pin
jithbiz003320-Apr-07 0:25
jithbiz003320-Apr-07 0:25 
AnswerRe: Image to appear after the page load Pin
Arun.Immanuel20-Apr-07 2:14
Arun.Immanuel20-Apr-07 2:14 
AnswerRe: Image to appear after the page load Pin
Jesse Squire20-Apr-07 3:55
Jesse Squire20-Apr-07 3:55 
You may want to consider including your img tags with an empty src attribute in your initial HTML. You could then include a client script fragment to set the src after the page has loaded. For example:
<html>
  <head>
    <script language = "javascript"  type = "text/javascript">
      function LoadImages()
      {
        document.getElementById('myImage').src = 'http://www.server.com/image.jpg';
      }
    </script>
  </head>
  <body onload = "LoadImages(); return true;">

    <!-- blah blah HTML -->

    <img id = "myImage" src = "" alt = "" />

    <!-- blah blah more HTML -->

  </body>
</html>


Hope that helps. Smile | :)

--Jesse
"... the internet's just a big porn library with some useful articles stuck in." - Rob Rodi

QuestionEMAIL and DATA UPDATION Pin
speedy_gonzalas19-Apr-07 22:51
speedy_gonzalas19-Apr-07 22:51 
AnswerRe: EMAIL and DATA UPDATION Pin
Christian Graus20-Apr-07 0:30
protectorChristian Graus20-Apr-07 0:30 
AnswerRe: EMAIL and DATA UPDATION Pin
Piyush2220-Apr-07 0:32
Piyush2220-Apr-07 0:32 
GeneralRe: EMAIL and DATA UPDATION Pin
speedy_gonzalas20-Apr-07 0:36
speedy_gonzalas20-Apr-07 0:36 
GeneralRe: EMAIL and DATA UPDATION Pin
Piyush2220-Apr-07 1:55
Piyush2220-Apr-07 1:55 
GeneralRe: EMAIL and DATA UPDATION Pin
speedy_gonzalas20-Apr-07 2:00
speedy_gonzalas20-Apr-07 2:00 
GeneralRe: EMAIL and DATA UPDATION Pin
Piyush2222-Apr-07 19:16
Piyush2222-Apr-07 19:16 
GeneralRe: EMAIL and DATA UPDATION Pin
speedy_gonzalas22-Apr-07 19:28
speedy_gonzalas22-Apr-07 19:28 
Questiondeploying ASP Application in Intranet [ urgent please help ] Pin
vimal_yet19-Apr-07 22:47
vimal_yet19-Apr-07 22:47 
AnswerRe: deploying ASP Application in Intranet [ urgent please help ] Pin
aransiola19-Apr-07 22:57
aransiola19-Apr-07 22:57 
GeneralRe: deploying ASP Application in Intranet [ urgent please help ] Pin
vimal_yet19-Apr-07 23:03
vimal_yet19-Apr-07 23:03 
QuestionBuilding Application Pin
siddisagar19-Apr-07 22:40
siddisagar19-Apr-07 22:40 
Questionon an aspx formInput=file html control Pin
aransiola19-Apr-07 22:35
aransiola19-Apr-07 22:35 
AnswerRe: on an aspx formInput=file html control Pin
Sandeep Akhare20-Apr-07 1:17
Sandeep Akhare20-Apr-07 1:17 
GeneralRe: on an aspx formInput=file html control Pin
aransiola20-Apr-07 7:59
aransiola20-Apr-07 7:59 
Questionreading mutiple files from disk Pin
marky77719-Apr-07 22:09
marky77719-Apr-07 22:09 
AnswerRe: reading mutiple files from disk Pin
Sandeep Akhare20-Apr-07 0:12
Sandeep Akhare20-Apr-07 0:12 

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.