After deploying the code to production server, I got the below mentioned error on login. We have recently upgraded the Telerik version to the latest 2012.3.1308.35 product version.
As per the below error, a method is missing from System.Web.UI but we can see that method in the Object Browser. Please provide some suggestions to resolve this issue.
Method not found: 'System.Web.UI.CompositeScriptReference System.Web.UI.ScriptManager.get_CompositeScript()'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.MissingMethodException: Method not found: 'System.Web.UI.CompositeScriptReference System.Web.UI.ScriptManager.get_CompositeScript()'.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[MissingMethodException: Method not found: 'System.Web.UI.CompositeScriptReference System.Web.UI.ScriptManager.get_CompositeScript()'.] Telerik.Web.UI.RadScriptManager.OnResolveScriptReference(ScriptReferenceEventArgs e) +0 System.Web.UI.ScriptManager.RegisterScripts() +261 System.Web.UI.ScriptManager.OnPagePreRenderComplete(Object sender, EventArgs e) +117 System.EventHandler.Invoke(Object sender, EventArgs e) +0 System.Web.UI.Page.OnPreRenderComplete(EventArgs e) +2060736 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1566
Version Information: Microsoft .NET Framework Version:2.0.50727.1891; ASP.NET Version:2.0.50727.1887
Hi
I have a RadGrid populated with sql datasource. I want to display a context menu on right clicking the rows.
what events I need to use and any sample code will be a great help....
Thanks
Shahi
public class BaseControl : UserControl{ private string _ValidationGroup = null; [Browsable(true)] public string ValidationGroup { get { return _ValidationGroup; } set { _ValidationGroup = value; SetValidationGroup(this, _ValidationGroup); } } private void SetValidationGroup(Control ctrl, string validationGroup) { foreach (Control child in ctrl.Controls) { if (child is BaseValidator) { (child as BaseValidator).ValidationGroup = validationGroup; } if (child.HasControls() && child.Visible) { SetValidationGroup(child, validationGroup); } } }}<controls:MyEntryControl runat="server" ID="TestEntryControl" ValidationGroup="MyValidationGroup" /><div style="clear:both;width:750px;text-align:right;padding-top:1em;"> <telerik:RadButton runat="server" ID="Save" Text="<%$ Resources:GlobalResources,Save %>" CausesValidation="true" ValidationGroup="MyValidationGroup" OnClick="Save_Click" /> <telerik:RadButton runat="server" ID="Cancel" Text="<%$ Resources:GlobalResources,Cancel %>" OnClick="Cancel_Click" CausesValidation="false" /></div>