<%@ Page Title=”” Language=”C#” MasterPageFile=”~/YourGuruMaster.master” AutoEventWireup=”true” CodeFile=”AnswerQuestion.aspx.cs” Inherits=”AnswerQuestion” StylesheetTheme=”AnswerDesign”%>
My skin file:
My code behind:
Label title;
void Page_PreInit(object sender, EventArgs e)
{
title = new Label();
title.SkinID = "Blue";
}
protected void Page_Load(object sender, EventArgs e)
{
title.Text = QuestionRequest;
PlaceHolder2.Controls.Add(title);
}
Set the page’s Theme property to the “AnswerDesign” instead of StyleSheetTheme to resolve the problem. Also, make certain that this theme contains the Blue skin.
UPDATE
Change the code as follows:
// OLD CODE
// NEW CODE