loop through the list and find your item, and place it in the first position, then pass the list to a sort routine that has been set to sort from the second item...
With out knowing what your doing on the specified page, what 'External Object' your using, and the code that's on the page, it's almost impossible to resolve your problem...
Any action on the ASP is considered user action (the timer tick triggers events just like a user click would), so the browser will collapse the menu because it thinks the user has now clicked the...
Web forms do not have a settable Focus like Windows forms... however the Tab key will move the focus to the next Focus settable object in the webform (link, button, textbox, etc)..
Personally i prefer to use the Repeater, as it includes a few extra options by default and also can be easily formatted to show data anyway you please.. It does take a little extra to setup, but...
Please do not repost the same thing over and over, even if it does not appear on the forum immediately.. Because your a new member, certain trigger words in your post put's it...
MS SQL Express is ideal for your situation, AND it's free... also it does not need office or MDAC loaded on target machine.. Its the Multi user Server database app version of Access..
Instead of passing objects back and forth and making new ones for every loop, lets go the more direct route.. Declare all variables up front, and use the...