Welcome

首页 / 网页编程 / ASP.NET / aspx如果引用cs中的变量的方法

cs:
public partial class js_picmar : System.Web.UI.Page
{
    protected string s = "脚本之家";
    protected void Page_Load(object sender, EventArgs e)
    {

        
    }
}
aspx:
<%=s%>
不能为private。