The following code always comes out with the error:
"The server tag 'asp:BulletedList' is is ambiguous. Please modify the associated registration that is causing ambiguity and pick a new tag prefix".
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="WebRole1.WebForm2" %><%@ 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:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"></asp:ToolkitScriptManager><div><asp:BulletedList ID="BulletedList1" runat="server" /></div></form></body></html>
Any suggestions?
Also, I'm using ASP 4.0, and the latest release of the AJAX toolkit...