|
|
|
|
|
| | |
| |
Active Server Pages asp source code database MS SQL MS Access .mdb adovbs.inc cookies calendar codes sql commands scripts asp programming tutorials iis web server components CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
|
|
Subject: |
Re: ASP create merged cell?? |
|
From: |
Si |
|
Date: |
2/9/2003 6:58:22 AM |
|
IP: |
80.225.40.64 |
You would have to use COLSPAN on the <td> that will contain the extra information - it would also be a good idea to stick the extra information in its own row (so you can colspan 11 columns):
Example:
<%
If objRS.Fields("Extra_Info") <> "" Then
Response.Write "<tr><td colspan=""11"">"
Response.Write objRS.Fields("Extra_Info")
Response.Write "</td></tr>"
End If
%>
|
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|