Classic ASP ProfessionalFor advanced coder questions in ASP 3. NOT for ASP.NET 1.0, 1.1, or 2.0.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Classic ASP Professional section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
I have a performance management system. The objective is to get it into excel, this has been achieved however I have two formatting issues which are troubling me:
1.How to force an HTML(is there another option) line break within a cell Here is a link to the file: http://www.framegroup.com.au/frameNe...oExcelNoBR.xls
My issue is the Oucomes and Outputs row, its to wide especially the first.
So Im thinking a br within my HTML will solve this, here is the result: http://www.framegroup.com.au/frameNe...celUsingBR.xls
Far to much space between the items. Is there another way? I have tried:
vbCr,VbCrLf,vbNewLine,Chr(13),Chr(10) - None of these work.
2.Getting the score image centered. I have tried the following:
Excel completley ignores:
Table tag - cellspacing and cellpadding (strangley enough allows the border and borderColor)
img tag - hSpace, vSpace and align=center
td tag - STYLE="PADDING:6" or align=center
If I remove the image from the HTML code and sent text to the .xls it centers. Can I not control an images
positioning using HTML within a cell?