Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Andeee

    Advice please: good text editor for HTML, ASP, VBScript, and SQL

    Notepad++ is good on windowes, and free. I use Bluefish under linux, which is my primary O/S.
  2. Andeee

    Setting the default submit action for a form

    Ignore my post its totally irrelevant. Dans solution is probably the best way.
  3. Andeee

    Setting the default submit action for a form

    If there's no need for data to be posted back tho the server on the back button, you could use images instead. (and an input of type image for the submit button for consistancy) Otherwise, you could get it to post to a server side script which can determine which button was pressed and proceed...
  4. Andeee

    Css problem

    <div id="bar"> <span class="right">Text on the right</span> <span class="left">Text on the left</span> </div> sometimes putting the left one above the right forces the right onto a new line, this way usually works for me.
  5. Andeee

    division background image

    try this: background-image:url('/BG/images/bg1.jpg');
  6. Andeee

    indent second line of paragraph

    that ones easy m8: p { margin-left: 20px; } p:first-line { margin-left: 0px; } this will apply to all p tags
  7. Andeee

    Submit button

    easy, you do it in a stylesheet: #submit { background-image: url(images/buttonimage.jpg); border-width:0px; width:100px; height:18px; } #submit:hover { background-image: url(images/buttonimage.jpg); border-width:0px; width:100px; height:18px; cursor: hand; } and use this as the button code...
  8. Andeee

    &lt;!--#include, ssi, anyone knows how ?

    Have you enabled server side includes in the IIS control panel?
  9. Andeee

    Div Alignment and FireFox

    Also style="float: right" will work with a slightly different behaviour. depends what you want to use it for.
  10. Andeee

    HTML command button setup

    np m8
  11. Andeee

    HTML command button setup

    http://www.w3schools.com/tags/ref_eventattributes.asp
  12. Andeee

    HTML command button setup

    BVecause he asked for a solution using the onClick="" attribute of the input element. As this attribute requires a javascript expression as its value, I added it in.
  13. Andeee

    css dynamic width columns (no percentages)

    oh, you can omit the width: 200px in the css
  14. Andeee

    css dynamic width columns (no percentages)

    Yeah i know the feeling, It's even worse trying to get the pages to display properly in all browsers. All the options to do it are in css, but none of them are implemented correctly unfortunaetly. There is another way mind, to do it, you don't define the center column: <!DOCTYPE html PUBLIC...
  15. Andeee

    HTML command button setup

    i Misseda bit: <INPUT id="Button1" type="button" value="Button" name="Button1" onclick="location.href='<%=Request.ServerVariables("SCRIPT_NAME")+'?action=iepthanks'%>'>
  16. Andeee

    HTML command button setup

    <INPUT id="Button1" type="button" value="Button" name="Button1" onclick="location.href='<%=Request.ServerVariables("SCRIPT_NAME")%>'>
  17. Andeee

    HTML command button setup

    Yes I see what you mean, its referenicing the file on the filesystem, not over http. The property you need to use is the "REQUEST_URI" http request header. not sure how in ASP mind.
  18. Andeee

    Why are my containers no longer the same height?

    I thinks omethings causing an optiocal illusion on the page. Although they look different sizes, on closer inspection form a screengrab and an image editor, they are in fact the same size.
  19. Andeee

    Table printing tips....

    This is the way i'd get the image in there <table> <!-- table stuff here --> </table> <img src="http://domain.com/background.jpg" style="position: relative; top: -100px; left: -10px; z-order: -1"> you may have to fiddle with the top and left css attibutes to get it where you want it, but...
  20. Andeee

    iframe background image

    The other way of course is to use some server-side code and a div.

Part and Inventory Search

Back
Top