HI!
I am using Dreamweaver 8, creating a form that when run opens as excel table as follows:
<head>
<%
Response.Conten tType = "applicatio n/vnd.ms-excel"
%>
I have outer 1-celled container table set to width=100%,
Then inner table set to width=100% with table headers in top row.
Problem is the width is ignored and the headers are displayed without wrapping, making the table very wide.
I have tried unchecking the "nowrap" textbox in properties for each header cell. Have also tried setting the width of both tables to 620 pixels, but that is also ignored.
Is there any way I can get this text to wrap without having to put breaks (<br>) in each header cell?
NOTE: this is not an issue when running in IE as a regular site (iow - taking out the "response.conte nttype" line above).
Let me know if you need more info.
Thank you for any and all suggestions!
I am using Dreamweaver 8, creating a form that when run opens as excel table as follows:
<head>
<%
Response.Conten tType = "applicatio n/vnd.ms-excel"
%>
I have outer 1-celled container table set to width=100%,
Then inner table set to width=100% with table headers in top row.
Problem is the width is ignored and the headers are displayed without wrapping, making the table very wide.
I have tried unchecking the "nowrap" textbox in properties for each header cell. Have also tried setting the width of both tables to 620 pixels, but that is also ignored.
Is there any way I can get this text to wrap without having to put breaks (<br>) in each header cell?
NOTE: this is not an issue when running in IE as a regular site (iow - taking out the "response.conte nttype" line above).
Let me know if you need more info.
Thank you for any and all suggestions!
Comment