<asp:Panel ID="pnlCrop" runat="server" Visible="false" Width="100px" Height="100px"> <div id="divImg" style="width: 100px; height: 100px" runat=server> <asp:Image ID="imgCrop" runat="server" /> </div> <br /> </asp:Panel>
imgCrop.ImageUrl = "~/Images/" + Session["WorkingImage"].ToString(); imgCrop.Width = "100px"; imgCrop.Height = "100px";
imgCrop.ImageUrl = "~/Images/" + Session["WorkingImage"].ToString(); imgCrop.Width = 100; // unit measure (100 unit) imgCrop.Height = 100; //unit measure (100 unit)
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)