当前位置: 代码迷 >> ASP.NET >> 前台怎么显示后台变量
  详细解决方案

前台怎么显示后台变量

热度:678   发布时间:2013-02-26 00:00:00.0
前台如何显示后台变量?
现在在页面上增加了一个label控件,想让他显示后台代码中一个变量字符串的值?不知道如何才能实现?

------解决方案--------------------------------------------------------
后台绑定 label.text
------解决方案--------------------------------------------------------
private string sName= " ";
public string SName
{
get{return sName;}
set{sName=value;}
}

label.text=SName;

如果aspx页绑定
在Page_Load中写:Page.Bound();
aspx页中: <%# SName%>
------解决方案--------------------------------------------------------
<asp:Label ID= "lab_curr_life " Runat=server text= ' <%=s%> '> </asp:Label>
变量s要是public类型的.
------解决方案--------------------------------------------------------
干什么还要Label啊,
直接在放的位置放个就好了,如:
<td> <%=str%> </td>
后台变量声明
public str;

注意一定要是public
  相关解决方案