Bilgiler > How to change page background color from codebehind at Asp.net
How to change page background color from codebehind at Asp.net
1) We need to change the body tag at aspx file
2) we need to add the code to codebehind page, where we want to oparate
badi.Attributes.Add("bgcolor", "Red");
Note:badi is the body name of our page
***