Hi
I have installed v.8.1.5 of DXperience today, and am having problems with it.
I initially tried adding a ASPxGridView component to an existing site, and after running into problems decided to try a fresh website, but have run into the same problem. I'm running Visual Studio 2008, and have created a .NET Framework 3.5 site.
I have the following assemblies in my web.config:
<assemblies>
<add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="DevExpress.Web.ASPxGridView.v8.1, Version=8.1.5.0, Culture=neutral, PublicKeyToken=9B171C9FD64DA1D1"/>
<add assembly="DevExpress.Web.v8.1, Version=8.1.5.0, Culture=neutral, PublicKeyToken=9B171C9FD64DA1D1"/>
<add assembly="DevExpress.Data.v8.1, Version=8.1.5.0, Culture=neutral, PublicKeyToken=9B171C9FD64DA1D1"/>
<add assembly="DevExpress.Web.ASPxEditors.v8.1, Version=8.1.5.0, Culture=neutral, PublicKeyToken=9B171C9FD64DA1D1"/>
</assemblies>
And my aspx file specifies:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<%@ Register Assembly="DevExpress.Web.ASPxGridView.v8.1" Namespace="DevExpress.Web.ASPxGridView" TagPrefix="dxwgv" %>
<%@ Register Assembly="DevExpress.Web.ASPxEditors.v8.1" Namespace="DevExpress.Web.ASPxEditors" TagPrefix="dxe"%>
<!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>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<dxwgv:ASPxGridView ID="grdTestingErrors" runat="server" EnableCallBacks="False">
<columns>
<dxwgv:GridViewDataColumn FieldName="ID" VisibleIndex="0" />
<dxwgv:GridViewDataColumn FieldName="TestingArea" Caption="Area" VisibleIndex="1" />
<dxwgv:GridViewDataColumn FieldName="Name" Caption="Description" VisibleIndex="2" />
<dxwgv:GridViewDataColumn FieldName="PersonRaisedBy.Name" Caption="Raised By" VisibleIndex="3" />
<dxwgv:GridViewDataColumn FieldName="RaisedDate" Caption="Raised Date" VisibleIndex="4" />
<dxwgv:GridViewDataColumn FieldName="PersonResponsible.Name" Caption="Responsible" VisibleIndex="5" />
<dxwgv:GridViewDataColumn FieldName="Priority" Caption="Priority" VisibleIndex="6" />
</columns>
<settings showheaderfilterbutton="true" />
</dxwgv:ASPxGridView>
</div>
</form>
</body>
</html>
My IDE genenates the warnings: "Warning 1 Element 'ASPxGridView' is not a known element. This can occur if there is a compilation error in the Web site, or the web.config file is missing. c:\Test\test\Default.aspx 15 16 c:\Test\test\" and Intellisense doesn't work.
What am I missing here?
Cheers,
Andrew