daelmo wrote:
Just paste the declarative code. Switch from Design view to Source view of your page and paste here the aspx code here.
Or (preferred in this case), attach the *.aspx problematic page to this thread.
I create ad hoc project, based on NWind Access database. After that I try to add a WebchartControl and a LLBLGenProDataSource2 to default.aspx page, and I obtained still the same error.
the following is the default.aspx markup code:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Register Assembly="DevExpress.XtraCharts.v8.1.Web, Version=8.1.6.0, Culture=neutral, PublicKeyToken=9b171c9fd64da1d1"
Namespace="DevExpress.XtraCharts.Web" TagPrefix="dxchartsui" %>
<%@ Register Assembly="DevExpress.XtraCharts.v8.1, Version=8.1.6.0, Culture=neutral, PublicKeyToken=9b171c9fd64da1d1"
Namespace="DevExpress.XtraCharts" TagPrefix="cc1" %>
<%@ Register Assembly="SD.LLBLGen.Pro.ORMSupportClasses.NET20" Namespace="SD.LLBLGen.Pro.ORMSupportClasses"
TagPrefix="llblgenpro" %>
<!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">
<dxchartsui:WebChartControl ID="WebChartControl1" runat="server">
<SeriesTemplate LabelTypeName="SideBySideBarSeriesLabel" PointOptionsTypeName="PointOptions"
SeriesViewTypeName="SideBySideBarSeriesView">
<View HiddenSerializableString="to be serialized">
</View>
<Label HiddenSerializableString="to be serialized">
<FillStyle FillOptionsTypeName="SolidFillOptions">
<Options HiddenSerializableString="to be serialized" />
</FillStyle>
</Label>
<PointOptions HiddenSerializableString="to be serialized">
</PointOptions>
<LegendPointOptions HiddenSerializableString="to be serialized">
</LegendPointOptions>
</SeriesTemplate>
<FillStyle FillOptionsTypeName="SolidFillOptions">
<Options HiddenSerializableString="to be serialized" />
</FillStyle>
</dxchartsui:WebChartControl>
<llblgenpro:LLBLGenProDataSource2 ID="llblDsOrders" runat="server" AdapterTypeName="NWind.Data.DatabaseSpecific.DataAccessAdapter, NWind.DataDBSpecific"
DataContainerType="EntityCollection" EntityFactoryTypeName="NWind.Data.FactoryClasses.OrdersEntityFactory, NWind.Data">
</llblgenpro:LLBLGenProDataSource2>
</form>
</body>
</html>