Server Error in '/' Application.
--------------------------------------------------------------------------------
Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: Could not load file or assembly 'Telerik.Web.UI' or one of its dependencies. The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG)) (web.config line 89)
Source Error:
Line 87: <httpModules>
Line 88: <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
Line 89: <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, Telerik.Web.UI" />
Line 90: </httpModules>
Line 91: <httpRuntime maxRequestLength="2048000" executionTimeout="600" />
Source File: web.config Line: 89
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.3053; ASP.NET Version:2.0.50727.3053
Is it possible to start at the years and drill down to pick a date?
With the RadDatePicker.
| <telerik:RadComboBox ZIndex="10000" ID="RadComboBox2" Runat="server" |
| DataSourceID="Enheder" DataTextField="unit_name" DataValueField="unit_id" |
| SelectedValue='<%# Bind("ingredient_parcelUnit") %>' |
| Filter="Contains" MarkFirstMatch="True" > |
| <CollapseAnimation Duration="200" Type="OutQuint" /> |
| </telerik:RadComboBox> |
In my asp.net application, rad grid consists of two image control column and one checkbox column for multiple row selection. One of the image control column is delete and delete command gets fired on image click since command name specified is 'Delete'. I defined one template column having another image.
What i want is if i selected multiple rows with check boxes then the particular routine should called on image2 click.
In my grid_itemdatabound event i have written this code:
ImageButton img2 = (ImageButton)dataItem["uniquename"].FindControl("ImgId");
img2 .Click +=
new ImageClickEventHandler(img2 _Click);
protected void img2_Click(object sender, ImageClickEventArgs e)
{
// some code that is to be executed, loop through grid rows, check if checkbox checked, execute routine
}
when i debug i fnd img2_click does get called
anyone who knows please tell how this can be achieved.
which command event i should use as delete i am already using for deleting multiple rows selected.
Please tell ASAP or provide some code.
Thanks.