Search results

  1. T

    Username/ Login Scripts

    You have to find ASP scripts to connect to your database via ODBC or ADO or whatever connection or framework required. What part of the SQL is difficult ?
  2. T

    Username/ Login Scripts

    This seems to sound like you need to use a server side scripting language. There a many server side scripting language to program in. The more common ones are ASP , JSP and PHP. You can use Javascript (a client side scripting language) to access the database but it's not going to be secure nor...
  3. T

    Image Chooser

    Hi. I would like to create a page with some sort of a mechanism that allows users to graphically choose the folder in their computers where they keep their pictures and a panel with a thumbnail preview capability for their pictures. The users could select the pictures (maybe with a checkbox for...
  4. T

    Can't view picture

    I have changed the html for the background in the CSS but the backgound picture keeps repeating itself. How do I stretch it in one non repeating 'canvas' (This is the request of the client) ? I would change the frame when the client doesn't wants it.
  5. T

    Can't view picture

    Thanks for all the help you guys have given. Greatly appreciate it :)
  6. T

    Can't view picture

    I decided to use frames because I don't need to re-render all the graphics (I am lazy) and plus I am not told specifically and my client isn't bothered so .... frames just fits all the situation (but not cure it perfectly though).
  7. T

    Can't view picture

    Hi. I have made a web http://www.goodrich.com.sg and I have the upper frame with it's company logo. My client claimed he cannot see the logo of the company but my machines and my friend's machines can view the logo. I hope someone can look into the web and tell me if you can see the company...
  8. T

    Flowing table cells

    Thanks. Would look into the helpful codes :)
  9. T

    Flowing table cells

    May I know how do you do use CSS divs for the flowing table cells ?
  10. T

    Flowing table cells

    Hi. I would like to create a table (width="100%") where the cells would keep on 'flowing' to keep adding columns to the table until it needs to flow into the next row. These are used to hold images. Simply, the concept is to mimic textarea where the words would keep flowing until it have to...
  11. T

    dynamic table rows

    Ok below is a more detailed code which worked only just half way I wanted. I managed to get the table row but now I want to view the content of the first element of the selected table row... how do I do it ? <script type="text/javascript"> onload=function addRowListeners() {...
  12. T

    web design help

    Go to http://www.w3schools.com to learn basic HTML and look into a bit of Javascript. You can use a Notepad or text editor to do editing and save the html pages as a '.html' extension and for Notepad, change the 'save as type' in the save as dialof box to 'All Files'. There are tools like...
  13. T

    dynamic table rows

    I search on the net for a bit of javascript on the portion where you click on a row of a table and I found the following codes... <SCRIPT LANGUAGE="JavaScript"> onload=function (){ TR=document.getElementsByTagName('tr') for(i=0; i<TR.length; i++)...
  14. T

    dynamic table rows

    Hi. I have a table with a row for id , username and password in a html table. I use JSP to dynamically load create the html table and load data from MySQL database. I have a textfield for the id, password textfield for password and textfield for username. The use is when I click on a row of...
  15. T

    converting to bg image after imageready slice

    You could actually slice them and export as webpage (html and image) in Photoshop but I am not sure if ImageReady have that function... then you import the webpage Photoshop made out of the slices into Dreamweaver and start coding other parts like adding frames... but it would take a bit of a...
  16. T

    redirect out of frames

    I figured that out now... I should have set target for the hyperlink to _parent... did a sample experiment and it worked.
  17. T

    converting to bg image after imageready slice

    Do you mean <body background="xxx.jpg"> ?
  18. T

    Blog?

    Either you have to code your own blog application with database backend support or you can just link your web to some blogging site containing your blog. For a very challenging one, if the blogging website you joined have an open API where you can connect into it and render your post in your own...
  19. T

    Simple frame question..

    If you want it to be in the middle of the entire page within the html <body> tag section , you can use <iframe>.
  20. T

    redirect out of frames

    I have a page 'index.html' that have a framset with codes... <html> <head> <title>Index</title> <frameset rows="20%,*" border="0"> <frame src="topBanner.html" scrolling="no" noresize="noresize"/> <frame src="welcome.html" scrolling="auto" noresize="noresize"/> <frameset>...
Top