|
-
Mar 22nd, 2001, 09:13 AM
#1
Thread Starter
Addicted Member
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?
-
Mar 22nd, 2001, 12:06 PM
#2
Lively Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|