need help!
-
I want to locate one button on the right side of the screen, I can use the following code: Button_my.Attributes.Add("style", "Left:500px;POSITION:absolute"); here Left:500px is just one examle, which should be dependent on screen width, therefore, how to put screen.width instead of some specific value into this code? thanks.
-
I want to locate one button on the right side of the screen, I can use the following code: Button_my.Attributes.Add("style", "Left:500px;POSITION:absolute"); here Left:500px is just one examle, which should be dependent on screen width, therefore, how to put screen.width instead of some specific value into this code? thanks.
use expressions
width: expression((documentElement.clientWidth < 725) ? "725px" : "auto"
similar to this.
Abhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.