Script Loads First
How come the asp script was executed first before css. I have this header page with pictures from a database but was seen first before the background that came from css when loading.
View RepliesHow come the asp script was executed first before css. I have this header page with pictures from a database but was seen first before the background that came from css when loading.
View RepliesI've been putting all my old vinyl into a database for my friends to view. Main problem is, using css, html and asp, the page for displaying the database results loads almost completely before the data is fully received, the top menu is ok, but the next search button (which is actually placed after the recordset loops in the scripting) loads first, then the footer from css then the database results is mixed into the copyright bit at the bottom.
Is there a way to tell the page to wait for the data to be received before loading the page itself?
I have seen a few articles with a javascript example but it is not working for me. The server side code is processed first and then the javascript so I basically get my page loading splash screen displayed for a split second and then my page I am navigating to.
How do I display the "Please Wait..." before the server side code kicks in ...
I am using a script for my site's songs,
Forexample Song is: ASP Song
And Artist is: SitePoint
It shows the songs data in the form of:
<td height="-1" bgcolor="<%=co%>" class="t">
<a href="player.asp?song=<%=rs("song")%>&artist=<%=rs("artist")%></a> by <%=rs("Artist")%>
</td>
It produces like : "ASP song by SitePoint" on songs.asp
But the problem is I have 62 songs, And they takes a lot of time to load,
Is there any other way to call the song details from the database and it will load fast ?
I've got an asp page which scans a range of IP addresses and printes the
response to screen.
I've tried loads of methods and ended up with using javascript innerHTML to
try and fill the content
What I'd like is the value to return instantly rather than wait until the
routine has completed and return ALL the results.
if i'm pinging a big range of addresses the page usually times out......
I thought if I could build the page dynamically, one result at a time, the
timeout error wouldn't happen - and users would see that something is
actually happening!!! Code:
I'm running win 2000, I downloaded a calender and put it into my root website folder. the calendar folder contained a file called adovbs.inc . After the insertion of this folder and creating links to it we noticed that when the web page loaded it's home page, another older page that has been deleted is displayed.
This page was located in the calendar folder. So now I've deleted the calendar folder, and restarted the server but this old page is still on display.
is there a way in ASP to automatically submit a form and its values when a page loads ?
if not is there any way round this scenario. i want to have a drop down list of options depending on which is selected will depend on where the form is submitted to.
It all seems to work well, but takes a large amount of time for the entire page to load, I guess due to the amount of records that get displayed, or maybe its the repeat region. So, Is there anything I can do in my asp code to speed these things up. Code:
View Replies View Related