Jump to content

aspnetguy

Members
  • Posts

    6,787
  • Joined

  • Last visited

Everything posted by aspnetguy

  1. this is how you would display it in HTML èGive me a sample of your javascript code and I'll show you how to do it
  2. aspnetguy

    ishost.exe

    I was joking...if it was free when you got it I don't see why you couldn't give it to someone else unless the company has said something different
  3. that is not a plain text character...try using the ASCII equivalent instead
  4. clear has 3 options :left,right,both (since you have elements floating left andd right I used both).Basically when you float an element, it floats out of its container unless you use a clearing <br> before you close the container holding the floated elements.IE seems to do this automatically while FF and Opera follow the standard and require you to place the clear in the code.
  5. worked like a charm...*blows smoking gun* yup it just needed a little persuasion
  6. aspnetguy

    ishost.exe

    so you are pirating software now huh? is it a free program you just can't find anymore or has the company started charging for it?
  7. nothing...the backgrounds show fine in IE and Opera but not FF, wierd...try the code change I suggested.EDIT: NVM...I am a dumba$$. AdBlock was blocking images from your site for some reason...I whitelisted you and it works fine.So how about the real problem does the clearing <br> work?
  8. aspnetguy

    XML Problem

    get out your windows CD and perpare tot do a REpair install !
  9. I mean when I load your link in FF it is just a big gray background...the image backgrounds are not showing at all.Anyways try this<div class="outerdiv"><div class="innerdiv"> <div class="content"> <div class="left"></div> <div class="left"></div> <div class="right"></div> <div class="right"></div> <br style="clear:both"/> </div></div></div>
  10. the backgrounds are not working in FF
  11. can you post a link..I can't seem to figure it out without the background images
  12. change this line document.write('<img src="'+theImages[whichImage]+'">'); to document.write('<a href="yoururl"><img src="'+theImages[whichImage]+'" border="0"></a>');
  13. I learned VB6 as my very first progrmming language. It is very easy since Visual Studio does everything for you.When I got to Java the next semester, VB did not help at all. Java is very different and actually more strict.
  14. if it isa beening sent as an email how can it mess up the web site?Use 2 RegExp the first one to change <br> to \n and then another one to remove all html and scripting tags
  15. like this http://webfx.eae.net/dhtml/chart/demo.html ?download the source here http://webfx.eae.net/download/chart102.zip
  16. also, don't qworry about Netscape like 0.1 % of users use it. You should make sure your code works in IE, FireFox, Opera, and Safari (99.9% of everyone)
  17. notepad 2 is exactly like notepad except it shows line numbers and does code highlighting...if it had tabbed documents it would be perfect (and yes I know conTEXT does have that )
  18. I am running out of suggestions, it has been many years since I worked with PERL.
  19. that's crap. VB and JAVA are nothing a like. that is like saying you have to take my course in marine biology before I'll teach you JAVA...chances are oyu don't want to learn from them if that is their view on the subject.Invest your money in some good Java books instead. O'Rielly's Java Examples in a nutshell is really good, I have that book.
  20. just use String.ToLower() to make all input lowercase
  21. that was just a simple example of course you can't just stick it anywhere and expect ti to work.do this <html><head><title>blank</title><script type="text/javascript"> function insertSmile() { var str = document.body.innerHTML; document.body.innerHTML = str.replace(':)','<img src="/joecoolaug/untitled3.png" alt="Smile"/>'); }</script></head><body onload="insertSmile()">:)</body></html>
  22. imagine that finding CSS information in the CSS tutorial
  23. If there are runtime erros they would show in the browser in big black letters like thisInternal Server Error
×
×
  • Create New...