Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

AjaxToolKit DropShadowExtender problem

Status
Not open for further replies.

MeonR

Programmer
Aug 16, 2002
97
US
Hello All

I am using VS2005 and the AjaxToolKit. I am trying to use the dropshadowextender on a panel control to no avail. Am i wrong in assuming this thing will work on .NET2.0? Anyway it does not throw any exceptions, Could it be that I placed into my master page? Anyway tried it with a regular .aspx page and no go there either.

Here is the code I am using



<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
Namespace="System.Web.UI" TagPrefix="asp" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
<html xmlns=" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>


<asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
&nbsp;</asp:contentplaceholder>
<asp:panel ID="pnlMain" runat="server" BackColor="White" ForeColor="Black" Height="702px"
Style="z-index: 100; left: 274px; position: absolute; top: 53px" Width="729px" BorderColor="White">
</asp:panel>
<cc1:DropShadowExtender ID="DropShadowExtender1" runat="server" TargetControlID="pnlMain">
</cc1:DropShadowExtender>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
</div>
</form>
</body>
</html>

Thanks
meonR

"The beatings will continue until morale improves
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top