Jump to content

aspnetguy

Members
  • Posts

    6,787
  • Joined

  • Last visited

Everything posted by aspnetguy

  1. I've played ET before and it is pretty good, I just couldn't get used to the different movement (aiming, etc)
  2. aspnetguy

    INNER JOIN QN

    not quite, like this sql="SELECT Subcode, DateGiven, DateDue, Information " & _"FROM " & tblname & _" Order BY " & sort & ", " & ordering
  3. No that is not cheating. that is what views are for. I generally use views if I am going to be needing that data over and over.
  4. jesh: can that be applied to other elements too? like div?
  5. you can also assign more than one class to an elementdiv class="class1 class2 class3"></div>Don't know if that will help you or not.
  6. no problem, I'll keep an eye out for you.
  7. we use symantec at work
  8. it should just over-write it quietly
  9. ALTER TABLE tableName CHANGE ItemID StockID try that
  10. There is more to it than that...read this, it explains everything http://www.4guysfromrolla.com/webtech/091201-1.shtml
  11. aspnetguy

    Port 25

    not unless you try to change it to port 110 (default pop port) POP3 and SMTP are completely seperate.
  12. moving thisa to teh flash forum...
  13. single player demo http://www.gamershell.com/download_10902.shtml
  14. the return false int he onclick event prevents the href from opening. This only happens if javascript is turned off.
  15. does this help? http://lists.xml.org/archives/xml-dev/200403/msg00443.html
  16. try removing the target attribute
  17. yes it would. You also need to have relevent content. Think about what keywords users would use to search for your site?read this site for more info http://www.seochat.com/
  18. I usually play at 9pm est threw the week but it varies over the weekend.LOL sure, does nayone else play this game?
  19. I'll be on the first server (CTF bolt rifles) around 9pm EST tonight if you can drop by, if not maybe I'll run into you sometime.
  20. just note that defining the functionthe way I did means you cannot reference it later on...only use that way if you only need the function once.Else do it this way var obj = document.getElementById('theid')obj.onclick = changeColorfunction changeColor(){ obj.style.color = 'red'}
  21. CDO2 awesome.I hang out here most of the time:69.65.15.30:28960aimsnipers.comI also go here sometimes69.5.88.133:28960cod.menofgod.usMy screen name is Widow MakerWhat servers do you play on and what is your screen name? I would enjoy killing you sometime
  22. you shouldn't framesets make a site slow and hard to navigate and maintain not to mention it messes up bookmarking and browser history. They should be avoided if at all possible
  23. you can't click ona styledo something like this var obj = document.getElementById('theid')obj.onclick = function(){obj.style.color = 'red'}
  24. try thishttp://www.rosehosting.com/installssl.html
  25. aspnetguy

    INNER JOIN QN

    doesn't matter if you write it all in one line or not.EDIT: just some guy is right you need to use & _ to tell your code it contuinues ont he next line....didn't see that part of the question when I posted.
×
×
  • Create New...