Jad00gar
|
| Posted: 06/06/2002, 4:05 PM |
|
Hi,
I Tried your Example but i have the same problem still(asp & template)
if i change HTML To...
-------
<!--BeginDListForm1-->
<td {DataTD}><font {DataFONT}>{name} </font></td>
<!--EndDListForm1-->
it puts all the records in a row
but if i add {open} it keeps every thing in a columns
<!--BeginDListForm1-->
{open}
<td {DataTD}><font {DataFONT}>{name} </font></td>
<!--EndDListForm1-->
here is the custome show from my page
' Form1 CustomShow Event begin
point = i/3
'response.write "i: "& i & " point: " & InStr(point, ".") & "<br>"
if InStr(point, ",") = 0 then
SetVar "open", "</tr><tr>"
else
SetVar "open", ""
end if
SetVar "name", ToHTML(fldname)
Parse "DListForm1", True
i = i+1
' Form1 CustomShow Event end
Thanks for your help in Adv.
Jad00gar
|
|
|
 |
Jad00gar
|
| Posted: 06/06/2002, 7:39 PM |
|
now its working on first page but not on the new page i created again its Wired
|
|
|
 |
Lawrence Wilson
|
| Posted: 06/06/2002, 9:54 PM |
|
Forgive me but I am frustrated already. How does
a person submit a question or comment without
doing what I am doing now which is responding to
another person's post????
|
|
|
 |
spaceclown
|
| Posted: 06/07/2002, 5:46 AM |
|
Your line if InStr(point, ",") = 0 then
Change to if InStr(point, ".") = 0 then
make sure your open event has i = 0 in it
|
|
|
 |
|