Hello,
I have recently been having some trouble with the the radControls for ASP.NET.
They were working fine and everything was ok until I randomly started getting this error on every page in my webapp.
The base class includes the field 'RadScriptManager1', but its type (Telerik.Web.UI.RadScriptManager) is not compatible with the type of control (Telerik.Web.UI.RadScriptManager).
i've gone as far as removing rad controls from the GAC, uninstalling and reinstalling them to no avail.
In the code view, there is no error for the scriptmanager, however the RadDatePicker shows an error that is the following
"Warning 1 C:\Projects\ProjectName\Secure\OrderHistory.aspx: ASP.NET runtime error: The base class includes the field 'BeginDate', but its type (Telerik.Web.UI.RadDatePicker) is not compatible with the type of control (Telerik.Web.UI.RadDatePicker). C:\Projects\ProjectNameSecure\OrderHistory.aspx 35 1 ProjectName
I have recently been having some trouble with the the radControls for ASP.NET.
They were working fine and everything was ok until I randomly started getting this error on every page in my webapp.
The base class includes the field 'RadScriptManager1', but its type (Telerik.Web.UI.RadScriptManager) is not compatible with the type of control (Telerik.Web.UI.RadScriptManager).
i've gone as far as removing rad controls from the GAC, uninstalling and reinstalling them to no avail.
In the code view, there is no error for the scriptmanager, however the RadDatePicker shows an error that is the following
"Warning 1 C:\Projects\ProjectName\Secure\OrderHistory.aspx: ASP.NET runtime error: The base class includes the field 'BeginDate', but its type (Telerik.Web.UI.RadDatePicker) is not compatible with the type of control (Telerik.Web.UI.RadDatePicker). C:\Projects\ProjectNameSecure\OrderHistory.aspx 35 1 ProjectName
<telerik:RadScriptManager ID="RadScriptManager1" runat="server"> |
</telerik:RadScriptManager> |
<table cellpadding="5" cellspacing="0" border="0" align="center"> |
<tr> |
<td> |
Begin Date |
</td> |
<td> |
End Date |
</td> |
<td colspan="2"> |
|
</td> |
</tr> |
<tr> |
<td> |
<telerik:RadDatePicker ID="BeginDate" Runat="server" |
Culture="English (United States)" Skin="Office2007"> |
<Calendar UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False" ViewSelectorText="x" skin="Office2007"></Calendar> |
<DatePopupButton ImageUrl="" HoverImageUrl=""></DatePopupButton> |
<DateInput DisplayDateFormat="M/d/yyyy" DateFormat="M/d/yyyy"></DateInput> |
</telerik:RadDatePicker> |
</td> |
<td> |
<telerik:RadDatePicker ID="EndDate" Runat="server" Skin="Office2007"> |
<Calendar UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False" ViewSelectorText="x" skin="Office2007"></Calendar> |
<DatePopupButton ImageUrl="" HoverImageUrl=""></DatePopupButton> |
<DateInput DisplayDateFormat="M/d/yyyy" DateFormat="M/d/yyyy"></DateInput> |
</telerik:RadDatePicker> |
</td> |
<td> |
<asp:Button ID="btnGo" runat="server" Text="Go!" onclick="btnGo_Click" /> |
</td> |
<td> |
<asp:LinkButton ID="lnkShowAll" runat="server" onclick="lnkShowAll_Click">Show All</asp:LinkButton> |
</td> |
</tr> |
</table> |
Whats even more interesting is the fact that the production test of this website (which is online on our server) works with no problems.
I haven't changed anything with the references or done anything to the controls on the page. This project is under source control and even after I had gotten the restore for it, the problem persists.
Any insight would be greatly appreciated, thanks!
Joshua Smith