Jump to content

aspnetguy

Members
  • Posts

    6,787
  • Joined

  • Last visited

Everything posted by aspnetguy

  1. Do you never install/uninstall things??? Even that can slow down a computer over time. But there are plenty of progrmas to clean that stuff up without reformating.If you keep anti-virus/anti-spyware up to date run a registry cleaner and defrag regualrly you shouldn't have any problems.
  2. Netscape is pretty bad and I think I would rank it lower than IE on my list even though it conforms to standards better.
  3. I agree C would probably be the fastest language to use but I don't know it that well I decided to use C# instead.I realise I have some work ahead of me creating usable algorithms.
  4. try Notepad2...it is just like Notepad except with line numbers and code highlighting.
  5. so is this a dead project or are you just not posting updates? it was getting really interesting...I hope you haven't given up on it.
  6. for example I am now trying to build a web crawler. I won't find a tutorial telling me step by step hwo to make it. I need to decide what it needs to do then break it into pieces.Then I can find basic examples of how to complete those pieces.
  7. ok I got a good start on it. My crawler returns a Response Stream from the requested url and I can read that into HTML code and display it in a textarea.Now on to getting it to follow links and managing how many levels it goes into a domain and transfering to outside domains.I can see how this could grow exponentionally very quickly without any limits on it. You would want a seperate server or servers just to do your crawling...if you were big like Google or Yahoo...
  8. aspnetguy

    web crawler

    Language aside what is involved in creating a web crawler (like the GoogleBot) that will index a site, follow links, etc.
  9. aspnetguy

    Sourcode ASP.NET

    What? You aren't making any sense?ASp.Net is free to download and install the framework.Are you looking for source code to projects or what?
  10. what version of windwos are you running? You have the .Net framework v1.1 install right? (1.1 is the only version that works with VS3003).Do you have IIS installed?If you answered yes to all these, uninstall VS and do a reinstall.
  11. you are just copying the answers already given. If you continue to do this you will receive a warning. Stop spamming!
  12. A MIME Type refers to the type of the content on the page (text/html, text/javascript, text/css.
  13. Can you stop with the pointless spam posts please.
  14. this issue was already resolved and answered.
  15. joe please stop repeating answers others have already given and if you don't want to really answer their question please don't post anything.
  16. Sometimes you just don't want to talk about code. Over the time I have been here I have gotten to know some of you pretty good and sometimes I like to chat about other stuff than code.It was decided by the admins not have an off-topic forum so the debate is really over. Although again if you feel the urge to chat then come over to my site and sign up for the forums there.The link is in my sig.
  17. Vista looks like it will have a few new, cool features, but it is mostly just going to be eye candy. Requiring a 256Mb video card (512 recommended) a lot more horsepwer then previous versions of windows. Although I believe it "downgrade" automaticaly if you don't have hte hardware to support the nice graphics.
  18. isn't typing a word or phrase into firefox the same as typing it into google and clicking "I'm Feeling Lucky"? Pretty sure FireFox uses google for searching.
  19. you have to put the <?php ?> before the <html> and make sure there is no extra lines before the php either. <?php has to be the first 5 characters of the file.
  20. MS is the whole reason this topic exists...if their stupid browser didn't execute garbage code then this situation would never have happened.Can;t wait for IE6 to gone. I am counting down the days til Vista and IE7 are released.
  21. your problem is here <a href="java script:toggle(1, si1)"> change it to this <a href="java script:toggle('1', 'si1')"> hmm it keeps putting a space between java and script, just take that out in your code.
  22. Well only if he is running PHP on a Linux server already. Sorry if I missed that but what are you using to run PHP? Windows or Linux/UNIX?If you are using Windows then the database and code can be on the same server (php runs fine on windows - doesnt it?).
  23. aspnetguy

    INI Files

    something like this?http://www.motobit.com/tips/detpg_asp-vbs-...rite-ini-files/
  24. what version of IIS are you using.In IIS6 open up Control Panel > Administrative Tools > Internet Information ServicesNow expand the tree until you see Web Service Extensions (or something like that). Click it and to the right you should see a list of possible extensions to enable or disable.ASP is there by default and in IIS6 is "prohibited" be default. Click on the ASP extension then click Allow.From a fresh install that is all it took for me to get .asp pages running.I am not sure but would assume the process would be similar in IIS5
  25. aspnetguy

    INI Files

    it would be the same as reading and writing any text file, you would just need to check for variable/value pairs.
×
×
  • Create New...