1
我已經在Visual Studio Express中看到了這個例子 - 它來自MS tuturial主頁,並且我已經檢查過所有東西都是按照它應該寫的,但是得到錯誤消息: 第9行。主題不是有效THEMENAMEASP.NET中的可選主題
-Linje 9: this.Theme = this.Request.Form[4].Trim();
例
<script runat="server">
public void Page_PreInit()
{
// Sets the Theme for the page.
this.Theme = "Blue";
if (Request.Form != null && Request.Form.Count > 0)
this.Theme = this.Request.Form[4].Trim();
}
</script>