Private sub Page_load()
...
dim objcell as tablecell
objcell=new tablecell
dim objLinkbutton as LinkButton
with objLinkbutton
   .text="Message"
   .id="linkbutton1"
   '如何在此处给LinkButton控件添加Click事件?
end with
objtablecell.controls.add(objlinkbutton)
...
end sub