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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mickywall

  1. mickywall

    ASP XMLHTTP

    When I use microsoft's xmlhttp object to retrieve a home for example www.kktest.com I get the error message msxml3.dll error '800c0005' The system cannot locate the resource specified. I realise that the webpage doesn't exist and that this is probably causing the problem. Is there a way to...
  2. mickywall

    body { margin:0; text-align:left }

    If I put this in an external sytlesheet body { margin:0; text-align:left; } the text in my tables in IE center. If I include td { text-align:left; } the text doesn't center Is there any reason for this, surely using the body selector should just work? thanks,
  3. mickywall

    using & spits out an error

    ok thanks... I'll try that
  4. mickywall

    using & spits out an error

    There is No browser problems with it, it works fine the issue is when I validate the page it spits out the error.
  5. mickywall

    using & spits out an error

    I am actually trying to validate the code using <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> at the top of the page.
  6. mickywall

    Background attribute

    thanks, I'll try that.
  7. mickywall

    using & spits out an error

    using the & spits out an error, how can I get rid of it Line 99, column 99: cannot generate system identifier for general entity "Category_Name" <a href='default.asp?CategoryID=1&Category_Name=test'><strong> thanks
  8. mickywall

    Background attribute

    I am trying to validate my page using <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> This is the error I am receiving, can anyone help? Line 20, column 61: there is no attribute "BACKGROUND" ... <td width="90%" height="18"...
  9. mickywall

    Body tag and margins

    My page code has the body tag attributes <body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0"> When I validate this code it states that there margin properties aren't acceptable. I could use the code below in a stylesheet though I was concerned about the amount of cross browser...
  10. mickywall

    Order By

    Below is the field structure of my database table 'myTable' ID (autonumber) Title (text) Featured (text) DateandTime (date/time) The field featured will either hold the value Y or N I would like to execute an SQL statement which selects firstly all the records that have a Y in the Featured...
  11. mickywall

    SQL can this statement work

    It doesn't work... I guess you can't do an ORDER BY statement on a field that either holds the value Y or N is that right?
  12. mickywall

    SQL can this statement work

    Below is the field structure of my database table 'myTable' ID (autonumber) Title (text) Featured (text) DateandTime (date/time) The field featured will either hold the value Y or N I would like to execute an SQL statement which selects firstly all the records that have a Y in the Featured...
  13. mickywall

    Preview window

    I have created a form, that also has a preview button. When the user clicks the preview button I would like to display what has been entered into the textbox (txtName) in a pop up preview window? <html> <head> <title>Untitled Document</title> <script language="JavaScript"> function...
  14. mickywall

    Moving to CSS

    What's the 'border-collapse: collapse;' stand for? Thanks for your help, you have made my day. Michael.
  15. mickywall

    Moving to CSS

    In my sample code I have a few tags that I would like to replace using a stylesheet, how can I can this code below? <table width="73%" border="2" align="center" cellspacing="0" cellpadding="2" bordercolor="#6185C1" bgcolor="EEF3FB"> <tr> <td valign="top">

Part and Inventory Search

Back
Top