I had checked that too. I made sure that the page validated as XHTML strict and the problem still occured.
I also tried an XHTML transitional doctype and had the same results. The problem doesn't happen on an unsecure server.
I'm not sure what else to try.
Hi all,
I have been searching the web looking for a solution and can not find the answer I need. I have an XHTML web page coded with an XHTML strict doctype that references a style sheet on a secure server. IE6 renders this page as expected but Firefox 2.0.0.3 seems to ignore the stylesheet...
Delete this line:
<link rel="stylesheet" type="text/css" media="print" href="it2/itsd/style/style_content_print.css" />
Take out the red part of the following but keep everything else:
<link rel="stylesheet" type="text/css" media="screen" href="it2/itsd/style/style_content_screen.css" />
Then...
Without seeing the code, I'm going to guess that you might find multiple <style> tags between your <head> tags similar to below:
<style type="text/css" media="screen">@import url(content.css);</style>
<style type="text/css" media="print">@import url(content_print.css);</style>
If this is the...
I use Dreamweaver MX 6.0 to FTP files between my local hard drive and a remote server. Occasionally, I find that a web page which has been saved locally and uploaded to a remote server mysteriously reverts back to a previously saved version of the file on BOTH my local hard drive and remote...
i wrote a bad SQL statement above. let me make this clear. i only want FIELD1 and FIELD2 in my recordset so i write the SQL to select only FIELD1 and FIELD2 as shown below but get an error because i have a WHERE and ORDER BY that needs FIELD3 and FIELD4 respectively.
strSQL = SELECT FIELD1...
i want to use getString() to optimize code. i have "WHERE" and "ORDER BY" in my SQL statment but don't want those fields to display on my table.
strSQL = SELECT FIELD1, FIELD2 WHERE FIELD3='something' ORDER BY FIELD4"
i want to display only FIELD1 and FIELD2 in a table...
This seems to be an easy one but I can't find what I'm looking for. Can anyone provide the syntax to reference the result of an SQL statement that uses an aggregate function with DAO?
SELECT SUM(Cost) FROM table...
How do I reference or get the result of "SUM(Cost)" from this query...
at a quick glance you need to adjust your query string and quote marks.
strSQL = "SELECT PATIENT.ID FROM tblPATIENTS "
strSQL = strSQL & "WHERE PATIENT.ID = " & Forms!MyForm!txtID & ";"
Set rs = Currentdb.OpenRecordset(strSQL)
This seems to be an easy one but I can't find what I'm looking for. Can anyone provide the syntax to reference the result of an SQL statement that uses an aggregate function with DAO?
SELECT SUM(Cost) FROM table...
I want to update the value of a text field on a form but am not sure how to...
Does anyone know how to strip a decimal so that a rounded down integer is returned? Would I have to parse text from the number and remove the decimal and everything to the right of it?
It sounds like it should be easy but I can't find what I need on the web. Am I missing something?
Thanks.
it looks like it works in ie only. you see the html, word doc gets printed. i just tried/tested it in nn and it doesn't work at all. (i should have known that. thanks for keeping me honest.)
nn 4.08 printed the actual html page, not the alternate file. use javascript to sniff the browser and...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.