62,269
社区成员
发帖
与我相关
我的任务
分享
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Cache["text"] = "text";
}
}
<table>
<tr>
<td>
<%=Cache["text"] %>
</td>
</tr>
</table>