public partial class CityDetailPage : System.Web.UI.Page
{
protected List<CityPhotoGallery> cityPhotoGallery;--It is allowed
protected var cityPhotoGallery; --IT IS NOT ALLOWED
protected void Page_Load(object sender, EventArgs e)
{
}
}
我知道如何将普通变量(其数据类型已知)从 aspx.cs 页面传递到 .aspx 页面,但是在我当前的 senerio 中有一个 var 类型变量,所以我如何将此变量从 .aspx.cs 传递到 .aspx 页面页