我创建了一个母版页,并将其放入有2个主题的投递箱中 专业和时髦如何动态更改它们并保存主页上的更改 我已经创建了一个基类,我只是无法理解代码。
using System;
using System.Web;
public partial class SiteMaster:System.Web.UI.MasterPage
{
private string _theme = "";
public string Theme
{
get { return _theme; }
set { _theme = value; }
}
}
public class BasePage:System.Web.UI.Page
{}