Jump to content

aspnetguy

Members
  • Posts

    6,787
  • Joined

  • Last visited

Everything posted by aspnetguy

  1. var html = document.frames['iframeName'].document.body.innerHTML should work in all browsers.But it only works on pages in the same domain. You cannot load Google for example and get the innerHTML. This is a security measure of all browsers.
  2. http://www.devx.com/tips/Tip/29291
  3. a group of radio buttons has to all have the same name attribute.
  4. Usually things like that are bugs in the editor. When they try to parse somethign they don't understand they sometimes remove it. MS editros are horrible that way too.
  5. mysql.com yes it is free. I have never verified the integrety of the download before, never had any problems either.
  6. aspnetguy

    APACHE

    http://httpd.apache.org/docs/2.0/platform/windows.html
  7. ID INT NOT NULL AUTO_INCREMENT PRIMARY KEY Should work
  8. I am afraid I can't help you here. I have never run 1.1 and 2.0 on the same server.Has 2.0 been installed all along or was that recently added? Could be a conflict between which version of CR the app is trying to use.
  9. you just go to references and add it in the solution explorer. Worked fine for me (VS 2003). Can you be more specific about how you are adding the reference and what IDE you are using
  10. ok, I would be surprised if that is not it. When an app pool is set up you choose the identity it will run as. DefaultAppPool is set to LocalSystem while, on our servers, SharePoint is set to NetworkService.
  11. aspnetguy

    Learn VBScript?

    I only ever recommend learning vbscript if you are going to be using ASP (which I don't usually recommend either). I still use vbscript with ASP even though I prefer Javascript. The reason is it is very hard, if not impossible, to find JavaScript/ASP examples online, everything is in vbscript.
  12. glad it works. You only need a frameset doctype when you are actually using a frameset
  13. chances are yahoo has their databases on seperate servers form webpages and you get a blank page because they have errors turned off.Add this line to teh top of the page and rerun to see errors ERROR_REPORTING(E_ALL); You will have to contact yahoo and find out the domain or ip of the mysql server and what username and password to use.Good luck.
  14. you are using a frameset doctype but you are not using a frameset in your page. Use either transitional or strict.background is depreciated in XHTML. Use css background-image or background-color instead.Not sure why you get that last error. It may be a symptom of the first error. Fix the first two and see if you still get the last error
  15. did you check the app pool properties -> identity tab???Where you originally using the DefaultAppPool and changed it to a custom one? The identity tab on the new one should be the same as the Default one.
  16. So, the location of the application did not change just the app pool?In IIS look at the properties of the old app pool and the new one and make sure that both Identity tabs are the same.
  17. well this is not PHP or VB.Net . the split function in JavaScript only accepts a character to split by because the string to split is the object you are applying the .split to. There is no need to specify the object to split.
  18. aspnetguy

    blog?

    wordpress.com is a free service that hosts a wordpress blog for you at yourname.wordpress.com. If you want to download it and install it yourself you go to wrodpress.org
  19. You need to add a sql login and password in the database connection string. Windows authentication won't work.I feel your pain. I spent 2 weeks trying to make the CR.Net that shipps with Visual Studio work and in the end bought another reporting tool. Since then our company has bought CR XI which is so much better than CR.Net.CR is very fussy about permissions.
  20. I would hate to see how much ram that computer needs just to run idle! LOL
  21. aspnetguy

    blog?

    a blog is essentially a CMS. If you want users to be able to comment then yes you need a database. If you are just going to post articles you could use a datbase with control pael for easy managment or you could manually add the articles to your html.sign up for a free account at wordpress.com and takea look around to get an idea of some of the things you may want in a blog.
  22. only if you have 1 line followinglike if(condition) dosomething();//orif(condition) dosomething();//unexpected resultif(condition) doSomething(); do somethingElse();//what the above is really doingif(condition){ dosomething();}dosomethingElse();
  23. He has obviously done that, he says so in the post.I am not sure how to do what you are asking. I have only ever used link for stylesheets.Just from browsing the link you provided it seems to me that the example of Prev and Next is only for semantics and search engines and is not expected to produce the clickable link.
×
×
  • Create New...