Jump to content

aspnetguy

Members
  • Posts

    6,787
  • Joined

  • Last visited

Everything posted by aspnetguy

  1. That is not what this forum is for! We do not find solution or write full scripts for people. You need to start by using google to search for a possible solution and then once you have made an attempt come back here and post your code and we can help you along.BTW, you will not find a cross browser solution for this.
  2. This would put it in the top left corner over top of what ever is rendered there making it not show up. Not a good idea . Does't really how much it is moved as long as it is completely off the viewable screen.
  3. Actually isn't it a type of application or application style. This is a message forum so this application's type is message forum, that's how I look at it anyways.
  4. read, write, modify???Just make the users a db owner.
  5. aspnetguy

    PHP Upload

    here is a script for thathttp://www.finalwebsites.com/snippets.php?id=7
  6. Just to confirm you are hiding it with display:none?I don't know if the element.visible property that you can chaneg in JS is related to the ASP.Net Object.Visible property but in ASP.Net if Visible is set to false the element stops working to so I always have to set disply:none in order to hide elements and have them still work.I don't know if that helps. You could try making sure visible is set to true in js for the element
  7. this places russia as part of asiahttp://www.mapsofworld.com/images/world-continents-map.gif
  8. Could you post your code and be a bit more specific about your situation?
  9. this thread may helphttp://www.thescripts.com/forum/thread103509.html
  10. I am moving this tot he SQL forum.Please post the code that you have already and provide the schema for the database table in question.
  11. isn't onload= the same as window.onload= ???
  12. you can echo some javascript code from a php function but php function only get executed on page refresh.AJAX allows you to execute server-side (PHP) functions without page refresh.
  13. You will need to use AJAX to achieve this.Read the AJAX tutorials on www.w3schools.com
  14. in the script you can specify the onload event. onload=function functionName(){......} is the same as <body onload="functionName()"> or you could grab the body tag like this var bodyTag = document.getElementsByTagName('body')[0];bodyTag.onload = function(){functionName()}
  15. how about posting your code so when can show you how to tweak it.
  16. You can sort of have both if you just down-grade your doctype to transitional
  17. of an image or an iframe??? Also do you want the page to refresh or do you want to do this without page refreshing???
  18. use <iframe frameborder="0"...That should do it.You can position an iframe just like any other html element. You can place it in a table or div depending on your layout method.
  19. wow sounds awesome...I will have to play it when it is done.Just a question will you be providing the source for this when it is done. I would like to see how flash games work.
  20. do you have another server you can try it on???awardspace has free hosting with PHP/MySql. Give it a try there and see if you still have troubles.
  21. my guess is that it would be done similairly to url re-writing using mod_rewrite form apache.using slashes AFAIK is not a standard method for passing info and would have to be setup in apache how to handle it.
  22. You'll have ot post your code if you want us to help you. We can't guess as to where you made mistakes in your code if we cannot see it
  23. read this article, it might help. It is based on ASP.Net 1.0 but I am sure most of it will be the same with just a few tweaks.http://www.stardeveloper.com/articles/disp...02043001&page=1
  24. I have used their free hosting before. Is it for an access database?Can you provide some more details.
  25. aspnetguy

    CSS3

    Exactly. The examples both looke dhte same to me and I don't think they were what was intended either.
×
×
  • Create New...