日期:2014-05-18  浏览次数:20499 次

弱弱的问一下
用ASP.NET+C#写网站
如果我要在<table></table>中间显示内容,显示的内容分别写在函数A()和B(),那么aspx文件中<table></table>中间该写什么呢?

------解决方案--------------------
HTML code

<table>
  <tr>
    <td>
     <%=A()+B()%>
    </td>
  </tr>
</table>