我记得HTML里有这种功能,
就是<td valign=top>内容</td>,
让这些内容显示在列的最上面,
不知道NET里怎么实现这种功能?<asp:BoundColumn ItemStyle-Width="20%" HeaderText="名字" DataField="restore_name" /><asp:templatecolumn ItemStyle-Width="70%" HeaderText="内容">
   <itemtemplate>
<%# SubStr(DataBinder.Eval(Container.DataItem,"restore_content").ToString())%>
   </itemtemplate>
</asp:templatecolumn><asp:BoundColumn ItemStyle-Width="10%" HeaderText="日期" DataField="restore_date" DataFormatString="{0:yyyy-MM-dd}" />