firstly - sorry if this already exists somewhere - i searched but couldn't find
anything -

i keep reading everyone go on about DW code completion and how great it is -
but can't find how to edit my own code completion tags like i could in
HTML-Kit. can someone push me in the right direction? - eg

in html-kit i could write
<table

and it would write
<table cellspacing='0' cellpadding='0' border = '0' summary='<%=summary%>'>
<tr>
<td></td>
</tr>
</table>

or <img would write <img src="images/" alt='<%=alt%>' border='0'>

i even got lazy and started making tags like :-

write : would return response.write("")

and

codeupdate

would write :-

Set RsUpdate = Server.CreateObject("ADODB.Recordset")
strSQL = "Select * FROM tbl where id = " & id
RsUpdate.Open strSQL, conn, 3,3,1


anyway - you get the idea.