Forum: HTML and CSS Jul 19th, 2006 |
| Replies: 24 Views: 3,199 If you only need a simple (few lines) code/script to provide basic protection, I would suggest google search for javascript password gate or similar. |
Forum: HTML and CSS Jul 13th, 2006 |
| Replies: 7 Views: 3,430 Use simply CSS wasn't take you 2 years to learn! The following is nice and simple solution to background colour:<table style="background-color: #123456"> |
Forum: HTML and CSS Nov 22nd, 2005 |
| Replies: 2 Views: 1,851 If you trying to save both data in a database, you can use hidden form variable to store the previous data and the text field for the current data. When submitted, both value will be post to you. |
Forum: HTML and CSS Nov 11th, 2005 |
| Replies: 3 Views: 4,373 Yes. Flash is not currently search engine friendly, if you entire site are build on Flash. But it you can combine flash and html, it will make a great web site.
See www.w3schools.com for css... |
Forum: HTML and CSS Nov 8th, 2005 |
| Replies: 3 Views: 4,373 if you have budget for additional software, I recommend you get the Macromedia Dreamweaver and Flash. These two are powerful to create great website (provided you hae great design...).
... |
Forum: HTML and CSS Oct 28th, 2005 |
| Replies: 4 Views: 2,069 You may dynamically generate all the link that contain either javascript onmouseover or title placeholde in the link tag. But this mean you need to redesign the all the links in you site.
1.... |
Forum: HTML and CSS Oct 26th, 2005 |
| Replies: 2 Views: 1,531 Looks like you want to have a form that the cursor focussed on the 1st textbox, when the user filled the textbox, it automatic move to the next box or to the submit button when completed. If this is... |
Forum: HTML and CSS Oct 26th, 2005 |
| Replies: 4 Views: 2,069 As I know you can do it in two ways:
1. Javascript using onMouseOver then call the script to popup a new windows (you may find problem when someone use browser with popup blocker).
2. CSS to... |
Forum: HTML and CSS Oct 19th, 2005 |
| Replies: 2 Views: 1,153 I not sure you can do it with client-side script, but it is fairly easy when using server-side scripting like asp and php.
. |
Forum: HTML and CSS Oct 19th, 2005 |
| Replies: 4 Views: 6,027 The 100% height is always refer to the screen height, NOT the height of your content. If you are using 1024x768 screen resolution, the 100% height will be 768 pixels, eventhough you have your... |
Forum: HTML and CSS Oct 16th, 2005 |
| Replies: 7 Views: 3,194 see http://www.digitalroom.net/index2.html or do you google search! |
Forum: HTML and CSS Oct 16th, 2005 |
| Replies: 2 Views: 1,532 Looks like you are going to creat content management system (CMS) or support ticket for your site. PHP as tgreer suggested is a best directon to start with. If you prefer to keep everything simple,... |
Forum: HTML and CSS Oct 16th, 2005 |
| Replies: 7 Views: 3,194 I not always recommend frame site for 2 main reasons:
1. not entirely search engine friendly
2. there's chance visitors find your framed page (content) rather than the index page.
I would... |
Forum: HTML and CSS Oct 12th, 2005 |
| Replies: 2 Views: 1,569 I would say there is error in your server side script. Add script to display warning when error found will help you solve your problem. |
Forum: HTML and CSS Sep 17th, 2005 |
| Replies: 3 Views: 1,444 You can use server side script like asp and php to crawl internet sites to a database. You can retrieve the meta tags including keywords and description during the crawling process. You can then... |
Forum: HTML and CSS Sep 9th, 2005 |
| Replies: 2 Views: 4,001 Agreed with tgreer. Better to use post in your form and retrive the data from texarea using request.form("txt"). Here is what I would normally do:
mytxt = request.form("txt")
' use one of the... |
Forum: HTML and CSS Aug 18th, 2005 |
| Replies: 2 Views: 4,903 After 'carefully' go though your page, I found that it wasn't the problem with your image (your image is NOT a background image, you simply use img script). It was the stucture of your page. Sorry... |
Forum: HTML and CSS Aug 18th, 2005 |
| Replies: 4 Views: 2,620 Not forget to mention that I learn all web programming from the Internet. Internet is great source of information and many people (like those in this forum) are willing to help. |
Forum: HTML and CSS Aug 18th, 2005 |
| Replies: 4 Views: 2,620 I learnt html before knowing dreamweaver. Dreamweaver is a useful tool but it doesn't mean you can do anything with it (a good example is creating form, which is easier to combine manual coding and... |