or
hi
I use Telerik.Web.UI.dll v2011.1.419.40
and my web host use windows server 2003 + IIS6
and I use RadScriptManager + RadChart in my web site
what is correct form of my web.config?
<?xml version="1.0"?> <configuration> <system.web> <machineKey validationKey="4E034E7E4D3A8BD7B883864A59A1DCE0F0830BBB7A8EA155F5E3C43640F53EE78D1FD427F4C7A1FC88C273BD134A4A55F329EB552379EE45E74C5FA298CD270F" decryptionKey="6D0118305061DE29C50CC073F906B4861CEE55D1CB1EBBE31D04220359C6794C" validation="SHA1" decryption="AES" /> <compilation debug="false" defaultLanguage="C#" targetFramework="4.0"> <assemblies> <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/> <add assembly="System.Speech, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> </assemblies> </compilation> <httpRuntime maxRequestLength="1024" requestLengthDiskThreshold="64" requestValidationMode="2.0"/> <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"> <controls> <add tagPrefix="csm" namespace="customWebControls"/> <add tagPrefix="tlk" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI"/> </controls> </pages> <httpModules> <add name="customErrorModule" type="customErrorModule"/> </httpModules> <httpHandlers> </httpHandlers> </system.web> <system.webServer> <validation validateIntegratedModeConfiguration="false"/> <modules> <add name="customErrorModule" type="customErrorModule"/> </modules> <handlers> </handlers> </system.webServer> </configuration>private static void CaptureChangesInGrid(RadGrid targetGrid){ //Loop through each targetgrid item foreach (GridDataItem gridRow in targetGrid.MasterTableView.Items) { Dictionary<object, object> editDict = new Dictionary<object, object>(); targetGrid.MasterTableView.ExtractValuesFromItem(editDict, (gridRow as GridEditableItem)); foreach (GridColumn column in targetGrid.MasterTableView.Columns) { CustomEditableColumn editableCol = column as CustomEditableColumn; GridEditableColumn editColumn = editableCol as GridEditableColumn; if (editableCol != null) { //Find the edit control in the given row System.Web.UI.Control editItem = editableCol.FindControlInRow(gridRow); if (editItem == null) { throw new ApplicationException("Unable to find edit control in for column: " + editableCol.HeaderText); } editableCol.CheckControlForChange(editItem, GetValueFromDictionary(editableCol, editDict)); } } }}
.RadDock { height: auto; margin: 0px 0px 9px 0px; padding-bottom:0px !important; border-bottom-width:0px; }