ASPX:如何訪問ASPX頁面中的變量?
<form id="form1" runat="server">
<%
int a = 25;
%>
<asp:Label ID="Label1" runat="server"
Text='<%#a %>'></asp:Label>
</form>
代碼後面:
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
DataBind();
}
}
錯誤:
The name 'a' does not exist in the current context
你也許試試吧'<%=a %>' – pushpraj 2014-09-21 03:09:27
不行........ – 2014-09-21 03:11:05
不行。 'Text ='<%#a %>'>' - 您只需將字符串設置爲文本。我想,你需要在代碼中完成它:'<%Label1.Text = a>%'。 – 2014-09-21 04:13:21