Results 1 to 2 of 2

Thread: help me format tables

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jul 2000
    Location
    Scotland
    Posts
    184

    Question

    I've inherited an ASP page which displays lots of data. I can get the data to display but I need help on formating it.

    The data is grouped and displayed in tables, there is a lot of the following lines:
    Code:
    Response.Write("</table></center></div>" & vbCrLf)
    
    	Response.Write("<table border='0' width='100%'>" & vbCrLf)
    I want to end one table and start a new one (in between two existing tables). When I add the above lines to end one and start another the formating is all to pot. Can anyone help?

  2. #2
    Lively Member harsoni's Avatar
    Join Date
    Oct 2000
    Posts
    118

    Smile

    Use <BR> instead of vbcrlf

    Response.Write("</table></center></div><BR>")
    Response.Write("<table border='0' width='100%'>")

    Sonia

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width