Does the above code not produce proper results in Firefox?
Yes..The VB code is working in Firefox.I just displayed the code just to know whether anything similar can be achieved using CSS style sheets..
1.For some reason when you change the Background or Height or Width of a webcontrol in the designer,Its not affecting in Mozilla Browser
BUT when the same change is done on the styles in HTML view ,
IT WORKS FINE IN BOTH MOZILLA FIREFOX AND INTERNET EXPLORER.
2.Similarly ...In the code behind,
Button1.Attributes.Add("Backcolor", "#00C0C0") is not working
BUT
Button1.Style.Add("Background", "#00C0C0") is working fine in both the browsers..
Thanks for you help..
QUESTIONS
1.I'm now learning how to create CSS stylesheets and I'm planning to load a style sheet for each screen resolution.If you know any other way of doing it ,tell me.My application demands me to resize the controls for each resolution.
2.I know this is a long shot but its worth asking..Can you assign variables inside CSS stylesheets?
3.Whats the difference between using Flow layout and Grid layout.I read many articles that tells the reader to use Flow layout...