Pointer Is Jumping Around

I'm having an issue where if I open my database and try to list everything line by line from top to bottom, it'll list about the first 25% of the entries in order, jumps over about 30 lines, displays all of the last entries in order, then jumps back to the missing entries and lists them in order. Can anyone tell me what might be causing this?
Code:

SelectSQLSpecial = "Select * from Items;"
CurrentIDSpecial.open SelectSQLSpecial, adoCon
do while not CurrentIDSpecial.eof
Response.write(CurrentIDSpecial.fields("ItemID") &" ")
CurrentIDSpecial.Movenext
LoopCounter=LoopCounter+1
Loop
CurrentIDSpecial.Close

I have no clue why its doing this. The code seems so simple I just can't figure out what'd cause the weird jumping pointer.

View Replies


ADVERTISEMENT

Jumping To The Top Of Parent Using Iframes?

I have a parent window (default.asp) and on this page I have an IFrame that displays the rest of the menu requests for the site. The url always shows the base url, never other pages because they appear in the IFrame - this is by design.

The content in the IFrame is dynamic and may scroll forever depending on how much data is retrieved from the db. If the user scrolls down the IFrame to view to contents, the top of the default.asp page scrolls with it until it reaches the top of the IFrame.

The problem is that when navigating through the site I can't seem to figure out how to get it to jump to the top of the default.asp page when the page in the IFrame changes. This causes the user to have to scroll up and down throughout the site making it unappealing for navigation reasons.

View Replies View Related

Pointer Over Image

I am traing to make a map of my country and I wish to specify cordinates for an errow wich shoult point to specific city on the map, is it posible to make this in asp?

I think this could be done by making big picture in one table and then assaining the other picture to point to specific location on that map (like left 100, right 200) but i do not know how to do that?

View Replies View Related

Database Pointer

I got some difficulty in the coding... but i dun know wats wrong with it. It seems that the pointer could not point to the statusValue = Online in my database. and it show my else line --"Site Under Maintenance, Please Try Again Later" but I want it to execute the IF code. I have check all my connection asp to my database and nothing is wrong.
What should I check on the database?

sql = "SELECT * FROM Server WHERE activate=true"
set sql = conn.execute(sql)
while sql.eof
if sql("statusValue") = "Online" then
siteStatus = true
else
siteStatus = false
end if
sql.movenext
wend

IF siteStatus = true THEN
< execute some code >

ELSE
response.write "Site Under Maintenance, Please Try Again Later."

View Replies View Related

Mouse Pointer

Does any one know if it is possible to make the mouse pointer into an hourglass while the server script is running. Using vbscript of javascript?

View Replies View Related

Controlling Mouse Pointer Appearance

I have a simple collapsible table that displays when a Label is clicked. However, since the label is only plaintext, the mouse becomes an insertion icon (I-bar) when over the text. Because of this, a user might not understand that the label is clickable. Is there a way to control the mouse appearance so that it shows the standard pointing finger, WITHOUT creating an anchor? Due to other elements in the page, it cannot link back to itself without erroring out.

View Replies View Related

Mouse Pointer Remains Busy After Window Popup

I've been writing web pages that pops up smaller windows when links are
clicked. I noticed that very often after the small window is poped up, the
mouse pointer remains busy instead of returning to the normal pointer.

Does anyone seen this problem before and know how to resolve it?

Code I use is like this:

function viewproductdetail(sku)
{
g =
open(page,'g','status=no,toolbar=no,menubar=no,hei ght=550,width=500,scrollba
rs=yes');
g.focus();
}

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved