ASP.NET Show - Show size

Fixed size in px: 370px X 175px
 


Fixed size in %: 100% X 100%. Take the size of the container it is in.
 

Example Code

<obshow:Show id="Show1" runat="server" Width="370px" Height="175px">
    <Panels>
        <obshow:Panel>
            ... Panel Content here ...    

VS.NET
Show1.Width = "370px"
Show1.Height = "175px"


C#
Show1.Width = "370px";
Show1.Height = "175px";