Click here to Skip to main content
15,887,135 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionReportViewer - Changing the Local Report Pin
BugMeNotFTW15-Jul-10 0:30
BugMeNotFTW15-Jul-10 0:30 
QuestionMSCharts with large amount of data is slow. Pin
Cobusvdvyver14-Jul-10 23:42
Cobusvdvyver14-Jul-10 23:42 
AnswerRe: MSCharts with large amount of data is slow. Pin
Suresh Pirsquare15-Jul-10 0:55
Suresh Pirsquare15-Jul-10 0:55 
GeneralRe: MSCharts with large amount of data is slow. Pin
Cobusvdvyver15-Jul-10 1:38
Cobusvdvyver15-Jul-10 1:38 
QuestionSetting the Content page back ground color different from the master page back ground color Pin
Steve Holdorf14-Jul-10 10:31
Steve Holdorf14-Jul-10 10:31 
AnswerRe: Setting the Content page back ground color different from the master page back ground color Pin
Sujoy Upadhyay14-Jul-10 18:20
Sujoy Upadhyay14-Jul-10 18:20 
GeneralRe: Setting the Content page back ground color different from the master page back ground color Pin
Prosanta Kundu online14-Jul-10 18:37
Prosanta Kundu online14-Jul-10 18:37 
AnswerRe: Setting the Content page back ground color different from the master page back ground color Pin
Prosanta Kundu online14-Jul-10 18:36
Prosanta Kundu online14-Jul-10 18:36 
Add runat="server" and ID attribute of body tag in Master Page.

XML
<body style="background-color:Gray" id="masterBody" runat="server">


Add a new PageBackground property in master page code behind and in page load assign the property value in body style.

C#
public String PageBackgound { get; set; }

protected void Page_Load(object sender, EventArgs e)
    {
        if (!string.IsNullOrEmpty(PageBackgound))
        {
            masterBody.Style.Add(HtmlTextWriterStyle.BackgroundColor, PageBackgound);
        }
    }


In your content page get the master page reference and assign PageBackground property value

C#
MasterPage myMaster = (MasterPage)Page.Master;
       myMaster.PageBackgound = "#ccff99";


Hope this will solve your problem.
GeneralRe: Setting the Content page back ground color different from the master page back ground color Pin
Sujoy Upadhyay14-Jul-10 20:02
Sujoy Upadhyay14-Jul-10 20:02 
GeneralRe: Setting the Content page back ground color different from the master page back ground color Pin
Prosanta Kundu online14-Jul-10 20:38
Prosanta Kundu online14-Jul-10 20:38 
GeneralRe: Setting the Content page back ground color different from the master page back ground color Pin
Sujoy Upadhyay14-Jul-10 20:42
Sujoy Upadhyay14-Jul-10 20:42 
GeneralRe: Setting the Content page back ground color different from the master page back ground color Pin
Prosanta Kundu online14-Jul-10 20:48
Prosanta Kundu online14-Jul-10 20:48 
AnswerRe: Setting the Content page back ground color different from the master page back ground color Pin
raju melveetilpurayil14-Jul-10 21:38
professionalraju melveetilpurayil14-Jul-10 21:38 
GeneralRe: Setting the Content page back ground color different from the master page back ground color Pin
Steve Holdorf15-Jul-10 6:19
Steve Holdorf15-Jul-10 6:19 
GeneralRe: Setting the Content page back ground color different from the master page back ground color Pin
Steve Holdorf15-Jul-10 7:48
Steve Holdorf15-Jul-10 7:48 
QuestionGet data from dropdownlist to Listbox using javascript Pin
SatyaKeerthi1514-Jul-10 4:23
SatyaKeerthi1514-Jul-10 4:23 
AnswerRe: Get data from dropdownlist to Listbox using javascript Pin
T M Gray14-Jul-10 5:24
T M Gray14-Jul-10 5:24 
GeneralRe: Get data from dropdownlist to Listbox using javascript Pin
SatyaKeerthi1514-Jul-10 19:23
SatyaKeerthi1514-Jul-10 19:23 
GeneralRe: Get data from dropdownlist to Listbox using javascript Pin
Sujoy Upadhyay14-Jul-10 20:06
Sujoy Upadhyay14-Jul-10 20:06 
GeneralRe: Get data from dropdownlist to Listbox using javascript Pin
Prosanta Kundu online14-Jul-10 20:45
Prosanta Kundu online14-Jul-10 20:45 
GeneralRe: Get data from dropdownlist to Listbox using javascript Pin
T M Gray16-Jul-10 6:18
T M Gray16-Jul-10 6:18 
Questionwant to know the idea regarding the Network Management System Project in asp.net Pin
Amit Spadez14-Jul-10 0:41
professionalAmit Spadez14-Jul-10 0:41 
AnswerRe: want to know the idea regarding the Network Management System Project in asp.net Pin
Peace ON14-Jul-10 1:00
Peace ON14-Jul-10 1:00 
AnswerRe: want to know the idea regarding the Network Management System Project in asp.net Pin
Not Active14-Jul-10 1:14
mentorNot Active14-Jul-10 1:14 
GeneralRe: want to know the idea regarding the Network Management System Project in asp.net Pin
Amit Spadez14-Jul-10 1:15
professionalAmit Spadez14-Jul-10 1:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.