我有一个附有Site.master.cs的Site.master文件
这段代码有效:
str##
我如何制作,以便我可以定义"示例"在C#文件中并通过以下方法调用变量:
<%
var example = "text";
%>
<%=example%>
Site.master文件中的?
答案 0 :(得分:0)
在.cs文件中创建一个公共属性,如
public string example {get;set;}
在你的加载事件中为其赋值
protected void Page_Load(object sender, EventArgs e)
{
example = "Some example";
}
然后在aspx页面中使用它
<%=example%>