I learned about Custom parameters and expressions in Dreamweaver MX templates.
So I tried adding them in my DWT TBB, like this.
<!-- TemplateParam name="border" type="number" value="1" -->
@@border@@
<table>
<tr>
<td>@@(border)@@</td>
<td><!-- #TemplateExpr expr="border" --></td>
</tr>
</table>
But I am getting a blank output without any error.
I want to add variables to my Dreamweaver TBB and get their values. Can anyone suggest if there is any other approach?