Jump to content

aspnetguy

Members
  • Posts

    6,787
  • Joined

  • Last visited

Everything posted by aspnetguy

  1. Since I switched aspnetguy.com over to community server 2.1 I have really enjoyed the admin panel to make changes instead of managing the web pages manually, managing Word Press and managing IPB all seperately.If I could do that with the websites I maintain then it would be a big help.
  2. you can do the exact same thing but changing the submit button to a regulat html button and moving the function execution to a onclick int he button instead of the onsubmit of th form, that way you avoid a page refresh.If you had a large page that took a while to load this would be a bad idea because if it was done the other way it woudl happen instantly without refreshing the entire pageEDIT: just like you did
  3. A simple template engine would be a good idea...I am going to be staeting one soon, I hope, in C#.If this idea does get choosen, I would be happy to share some of my planning documentation.
  4. soooo...basically what justsomeguy said?
  5. Your way does work Dan but I wouldn't recommend it. Why do a whole page refresh for a simple javascript task?
  6. well your really welcome...glad it works
  7. yes they are valid. How else could you place different stylesheets in the <head> if conditional comments were allowed in the <head>?
  8. One of the main reasons your original script didn't work is because it was being executed before the was even rendered to the screen...which means when the javascript ran it didn't find a cbecause it did not exist yet.By placing the script last or wrapped in a body onload event it garentees the document is fully loaded before executing the javascript.
  9. that would definately be a benefit to everyone but is a large project. We want to start off with something that isn't too big or hard for the same reason we decided to set a deadline...people get bored!If the project is too big or is allowed to drag on for too long people will lose interest and quit. Your idea would be great if we can get enough people together to decently divide up the projec tinto modules for different people to work on.
  10. I believe so. This version of IPB sperates "key" words like this: javascript - script - vbscriptThis verison also won't let you reply 2 times in a row...it adds it to the bottom of your last post.EDIT: ok it didn't seperate it this time...it has been happening everytime...except now hmmmm
  11. change this <td align=right><font size="4"><img border="0" src="top_right1.gif" width="319" height="22"></td> to <td align=right><img border="0" src="top_right1.gif" width="319" height="22"><br></td> if you open a font tag close it within the same cell...i removed it since it was pointless.and change this <td align=right><img border="0" src="top_right2.gif" width="184" height="184"></td> to <td align=right><img border="0" src="top_right2.gif" width="184" height="184"><br></td> BTW, it looks fine in FireFox and Opera....you are experiencing a bug in IE that is why you have to add a <br> after an image inside a cell. Doesn't make sense but it works
  12. change type=submit to type=buttonA submit button refreshes the page undoing the hiding div
  13. if you use everydns.net (must own your own domain though (unless you can change dcole.ath.cx away from dyndns nameservers to ns1.everydns.net, etc) it gives you a PERL or Windows script to use to update your dns.I set the Windows script as a scheduled task and my dns is updated every hour
  14. I share your pain...I had the same problem a while back and never solved it. I ended up useing a product that used xml nodes to build a "tree" it allowed me to navigate to the specific node I needed at a specific time.
  15. I haven't done many outer joins but shouldn't the syntax be somehting like this? SELECT c.cid as cid, c.title, u.uid as uid, u.fname, u.lname, s.total_score, s.completed FROM users u LEFT OUTER JOIN content_session s ON u.uid=s.uid INNER JOIN content c ON c.cid=s.cid WHERE u.active=1
  16. Dan...if you used more than just IE you would know the quirkiness between IE and every other browser.In a lot of cases different styles must be defined for different browsers to get them to look the same.
  17. My friend breeded tropical fish for a while...he had 4 large (I mean very large) tanks in his fmaily room with about 30 fish at any given time...he stopped cuase he could find enough local buyers and didn't have the time to drive to the city for each sale.
  18. Post #5: Miscellaneous Questions-----------------------------------------------------What project will we be working on?Everyone will vote on it.Can I submit an idea?Yes, please do! When do we start voting?That will be decided soon. Most probably when we think everyone is ready to start, and we have enough people.Can I get a friend to help?Sure, but he/she has to sign up on the forum to do so.Where do we post our thoughts?There is another topic in the forum for discussion, that's why this is closed.When do we start?Soon!
  19. SELECT * FROM tableName LIMIT 10
  20. aspnetguy

    XML Problem

    can you post the whole error...word for word
  21. I was refering to this But hey sure...I only have Ad-Aware...if this is better I'll take it thanks
  22. That is only a warning...css with warnings is still considered valid
  23. STR_TEXT="This is a test abcd&#232;";
×
×
  • Create New...