Jump to content

aspnetguy

Members
  • Posts

    6,787
  • Joined

  • Last visited

Everything posted by aspnetguy

  1. remember padding and margin contribute to width as well.if you have a div witht he width 500 and a margin of 10 thent he real width is 520
  2. I highly doubt that is possible.
  3. the link doesn't work. that looks like a internal network address not a website addresscan you post the code? Is it only not working in Safari? Have you tested with other browsers?
  4. <div id="hydropodcontainer"><form action="" method="post"><div id="hydronames"><p><img src="your image" alt=""onclick="document.hp.src='graphics/HP_Rangler.jpg';" /></p><p><img src="your image" alt=""onclick="document.hp.src='graphics/HP_Clamp.jpg';" /></p></div><div id="hydroimage"><img name="hp" src="graphics/HP_Rangler.jpg"alt="Hydro-Pod Rangler" width="220px" /></div></form></div> try this
  5. this lesson demonstrates how to execute a batch (.bat) file from C#.You could put your arp commands in a batch file and have C# execute the file.
  6. How are databases less secure?
  7. https means the server is using a SSL certificate and all data passed on the web page is encrypted.
  8. I recommend using a database even if it is small. This allows for easy expansion later with no extra development work.Try the PHP/MySql tutorial if you are having some troubles.
  9. aspnetguy

    Linked Styles

    afraid not. you could probably write some javascript but woudl probably be just as much work as inserting the html.
  10. no problem Mike, Happy Programming
  11. on login set a field in the database to true and on log off set it to false. If the variable is already true deny access.
  12. use sessions: http://www.php.net/session
  13. I doubt there is an offline version and just saving the validator page won't work because it would still have to access the processing scripts on the w3 server.
  14. phpMyAdmin is the best I have found
  15. you simple use width, if this is not working there are other issues at work.
  16. I am sure your customers (and mine too) wouldn't appreciate those extensions for their website tho But very funny!
  17. Google, Yahoo, and MSN make up over 80% of search engine usage I would recommend manually submitting to each of these.http://www.google.com/addurl/http://search.yahoo.com/info/submit.htmlhttp://search.msn.com.sg/docs/submit.aspx?FORM=WSDD
  18. aspnetguy

    Bullet Colours

    yes, each list would need it's own class <ul class="level-one"> <li></li> <li> <ul class="level-two"> <li></li> <li> <ul class="level-three"> <li></li> <li></li> </ul> </li> </ul> </li></ul>
  19. aspnetguy

    Width

    HTML <SELECT NAME="namehere" class="select-box"> CSS .select-box{ width: 100px;} If the option label is longer than the specified width it gets cut off.
  20. aspnetguy

    Data Encryption

    here is an article that is on use MD5 encryption to store passwords in a database.http://aspnet.4guysfromrolla.com/articles/103002-1.aspxNote: MD5 is not decyrptable (you cannot retreive the users password if they forget it, you'll have to give then a new one.)If you use SHA1 encryption, it is decryptable.
  21. microsoft used the .mspx extension on their site (in some areas) I am not sure if that is just them being stupid and using their name int he extention...realistically I could use the .imcool extension as long as I map it in IIS.
  22. aspnetguy

    Two CSS styles

    yes that will owrk just fine
  23. no, there is no such thing as aspx.net....he must have made a typo...
  24. aspnetguy

    Whoa...

    Actually no I haven't seen Event Horizon
  25. http://www.1keydata.com/sql/sqllike.html
×
×
  • Create New...