changing the screen color at runtime in asp.net
-
Hi, I want to change my screen color at runtime,help me..
-
Hi, I want to change my screen color at runtime,help me..
jaraldumary wrote:
I want to change my screen color at runtime,
which screen color ? are you talking about theme change ? if yes the try to learn about css and skin in asp.net. There are lots of link will be available on that in google .
cheers, Abhijit
-
jaraldumary wrote:
I want to change my screen color at runtime,
which screen color ? are you talking about theme change ? if yes the try to learn about css and skin in asp.net. There are lots of link will be available on that in google .
cheers, Abhijit
yes theme color,how to change the color of the form in runtime, or else send some links to learn..
-
yes theme color,how to change the color of the form in runtime, or else send some links to learn..
your basic issue is that you need to understand ASP.NET. It's an engine for HTML, HTML is what the browser shows. So, you need to learn how to set the color of a page of HTML. The web abounds with such info.
Christian Graus Driven to the arms of OSX by Vista.
-
Hi, I want to change my screen color at runtime,help me..
-
yes theme color,how to change the color of the form in runtime, or else send some links to learn..
jaraldumary wrote:
,how to change the color of the form in runtime
Yaa..if this is single page application, that can be done easily, but for applying to all over the sites you need to learn about HTTPHandler. Search google. Lots of example are there .
cheers, Abhijit
-
when the page is loading, the color of the form should be changed..
-
when the page is loading, the color of the form should be changed..
for changing the color at runtime If your body tag defined as runat="server" then you can change the style of that screen by accessing the id of body tag at server side code.if you want change it on any event then code like this body1.Style.Add("background-color","color id"); you can also change it on Page_Load event
Cheers!! Brij
-
for changing the color at runtime If your body tag defined as runat="server" then you can change the style of that screen by accessing the id of body tag at server side code.if you want change it on any event then code like this body1.Style.Add("background-color","color id"); you can also change it on Page_Load event
Cheers!! Brij
thank you
-
thank you