i believe so if the webserver has access to this other server, and permissions to run such a script.
[thumbsup2]DreX
aKa - Robert
if all else fails, light it on fire and do the happy dance!
" I always think outside the 'box', because I'm never in the 'loop' " - DreX 2005
whoops thanks dan, i forgot to plug in the date math in the code snip
[thumbsup2]DreX
aKa - Robert
if all else fails, light it on fire and do the happy dance!
" I always think outside the 'box', because I'm never in the 'loop' " - DreX 2005
i think i might have missed some lessons, but from what i see that doesn't look like asp, i'm not even familiar with that formatting of code, but as for the error your're getting updating unique ids is 2 fold, one thy have to be unique before and after updating, secondly, they have to maintain...
this is probably the closest i've fond to the "style" of menu you're trying to make :
http://www.cssplay.co.uk/menus/dd_valid_2.html
[thumbsup2]DreX
aKa - Robert
if all else fails, light it on fire and do the happy dance!
" I always think outside the 'box', because I'm never in the 'loop' " -...
correct, and beacase the way that one works, it'll be goofy like that, the reason it works is it keeps track of the last one you hovered, so that when you bridge the gaps it still displays it, which still applies even after goin way outside, now the entire container everything sits in, we can...
usually this sort of thing is done with graphics, then the overlaps aren't so visible, so here's 2 examples, the first you can see the overlap, i just placed the red border on the individual divs and changed the positioning slightly, and got rid of the container.
<html>
<head>
<script...
there are 2 main reasons most menu systems work seamlessly without the jitter/fight to maintain like you're having..
1) container
2) overlap
container is a div/table whatever everything is in and on mouseout you hide the selections, and on the different menuitems you showsubmenu, hide other...
actually here's one of the google results with a very nice list of suggestions, methods, and styles.
http://www.javascript-examples.com/autocomplete-demo/
[thumbsup2]DreX
aKa - Robert
if all else fails, light it on fire and do the happy dance!
" I always think outside the 'box', because I'm...
search google for javascript autosearch/autocomplete/autosuggest
there's many such examples, including ones that have xmlhttp, which will poll results from your site so you dont ave to populate your html with emails and even more applicable to check against your DB
[thumbsup2]DreX
aKa - Robert...
are all of the fields/elements the same name? names can be the same, id can be different, so you can address each individually the same way you supplied.
if they have to have same ID whether or not the name is the same you can use something like the following:
function hideshow(obj)
{...
my suggestion is to to do a table alter, insert a NEW field, as numeric as you're wanting
copy the old data to it, then rename the old/new fields, so the new becomes the old etc..
then you can delete the non number format.
my guess is you possibly have non numeric data in that field and hence...
free a top section?? add a DIV?
if you have a page, and you're trying to slip something else in at the top, find the body tag, and right below it add your new stuff..
limited info, limited answer .. sorry
[thumbsup2]DreX
aKa - Robert
if all else fails, light it on fire and do the happy...
well he's saying 30 seconds for the SP, so 8000 would timeout, i've just taken it to lazy typing as i usually do, but if it is at 8000 instead of 80k then it will be timing out
[thumbsup2]DreX
aKa - Robert
if all else fails, light it on fire and do the happy dance!
" I always think outside the...
Hmmm, wil do more thinking (with google in hand!) and respond back soon
[thumbsup2]DreX
aKa - Robert
if all else fails, light it on fire and do the happy dance!
" I always think outside the 'box', because I'm never in the 'loop' " - DreX 2005
been a long time since i've used extensive "chew" scripts for data crunching, i've looking in my archives and for some reason i'd put timeouts on all three properties as zero
although i did frequently use response.buffer=true and response.flush a period(space) after every so often records...
even give u a star for it
[2thumbsup]
[thumbsup2]DreX
aKa - Robert
if all else fails, light it on fire and do the happy dance!
" I always think outside the 'box', because I'm never in the 'loop' " - DreX 2005
i do understand it is case sensitive, i was typing a quick response in order ot be of assistnace, as this forum is supposedly for IT professionals, i would figure my collegues out there know to correct the case sensitivity, and to replace out the IFRAME in the call to the respective title, but...
forgot to note, to hide large chunks, put spans on them or anchors around them, or if it's entire tables, or TR's just ID them
[thumbsup2]DreX
aKa - Robert
if all else fails, light it on fire and do the happy dance!
" I always think outside the 'box', because I'm never in the 'loop' " - DreX 2005
you really dont need to go all out on CSS .. simple functions like this will usually do you:
<script>
function hideshow(obj)
{
var obj = (typeof(obj)!='object') ? document.getElementById(obj) : obj;
obj.style.display = (obj.style.display != 'none' ? 'none' : '' );
}
</script>
fed with...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.