ASP.NET2010. 2. 2. 20:39

    function resize()
    {
        var p_height, p_width;
        var Image1 = document.getElementById("<%= Image1.ClientID%>");
        p_width = Image1.width + 40;
        p_height = Image1.height + 35;
        if (p_width > 1024) p_width = 1024;
        if (p_height > 768) p_height = 768;
        self.resizeTo(p_width, p_height);
    }

바디에../.
<body onload="resize()" scroll="yes">

이상~~~
Posted by 댓거리사랑