I'm working on ASP.NET project. When I put DropShadow extender inside a panel there is a new shadow effect but it doesn't change after i set different opacity value. Shadow looks the same with values 0, 0.1 , 0.5 and 1. I also tried values bigger then one. Anyone knows why is it so?

    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="asp" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>

    <form id="form1" runat="server">

    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <div>
        <asp:Panel ID="Panel1" runat="server">
            hrthartartart6</asp:Panel>
        <asp:DropShadowExtender ID="Panel1_DropShadowExtender" runat="server" 
            Enabled="True" Opacity="0.1" TargetControlID="Panel1">
        </asp:DropShadowExtender>
    </div>
    </form>
</body>
</html>
link|improve this question
1  
You must not be changing the correct CSS, can you post some code? – rick schott Aug 29 '11 at 1:30
I added the code. It is a simple sample asp.net website with a single panel with dropshadow added. Shadow is visible but i can't change it with "opacity" parameter. – Luke Aug 29 '11 at 11:31
Are you using Visual Studio? – jadarnel27 Aug 29 '11 at 17:05
@rick he's actually referring to the Opacity property of the DropShadowExtender control (which is kind of confusing, considering Opacity is also a CSS property). – jadarnel27 Aug 29 '11 at 17:21
Yes, Visual Studio 2010 – Luke Aug 29 '11 at 21:03
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.