请教怎样在 vs.net 中设定td 的背影图像

请问怎样在 vs.net 中设定td 的背影图像?
我在html中是这样写的:
<td   id= "td1 "   align= "center "   background= "images/011.gif "   runat= "server ">
现在想在   aspx.vb   中设定background   的值,因为这个值要变,请问应该怎么写啊,谢谢!

------解决方案--------------------
应写成 <td id= "td1 " align= "center " background= " <%=pic%> "> ,在aspx.vb类文件中把pic定义为public类型的字符串变量,这样可以实现根据不同的条件加载不同的列背景.