| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="btnCreateAccount"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="RadWindowManager1" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| <telerik:AjaxSetting AjaxControlID="lnkPasswordRecovery"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="RadWindowManager1" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| <telerik:AjaxSetting AjaxControlID="lnkPrivacy"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="RadWindowManager1" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| <telerik:AjaxSetting AjaxControlID="lnkSecurity"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="RadWindowManager1" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| <telerik:RadWindowManager ID="RadWindowManager1" runat="server" |
| DestroyOnClose="true" |
| Behaviors="Close,Move" |
| Modal="false" |
| KeepInScreenBounds="true" |
| VisibleStatusbar="false" |
| VisibleOnPageLoad="true" |
| Animation="None" |
| > |
| </telerik:RadWindowManager> |
| Dim rw As New RadWindow |
| With rw |
| .NavigateUrl = NavigateUrl |
| .Height = Height |
| .Width = Width |
| End With |
| ' Add it to the RadWindowManager's Windows collection |
| rwManager.Windows.Add(rw) |
| <telerik:RadGrid ID="ValueGrid" runat="server" AutoGenerateColumns="False" |
| Width="100%" GridLines="Horizontal" |
| AllowAutomaticDeletes="true" AllowAutomaticInserts="false" AllowAutomaticUpdates="false" |
| OnNeedDataSource="ValueGrid_NeedDataSource" |
| OnItemDataBound="ValueGrid_ItemDataBound" |
| OnDeleteCommand="ValueGrid_DeleteCommand" |
| OnInsertCommand="ValueGrid_InsertCommand" |
| OnUpdateCommand="ValueGrid_UpdateCommand"> |
| <MasterTableView DataKeyNames="Key" CommandItemDisplay="Top" |
| NoMasterRecordsText="No additional info data for this contract." |
| ShowHeadersWhenNoRecords="true"> |
| <Columns> |
| <telerik:GridButtonColumn CommandName="Edit" ButtonType="ImageButton" Text="Edit" |
| UniqueName="EditCommandColumn" |
| ImageUrl="~/App_Themes/Default/buttons/grid_edit.jpg"> |
| <HeaderStyle Width="20px" /> |
| </telerik:GridButtonColumn> |
| <telerik:GridTemplateColumn DataField="Attribute" HeaderText="Type"> |
| <HeaderStyle Width="100px" /> |
| <ItemStyle Width="100px" /> |
| <ItemTemplate> |
| <asp:Literal ID="AttributeLabel" runat="server" |
| Text='<%#DataBinder.Eval(Container, "DataItem.Attribute.Name") %>' /> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridTemplateColumn HeaderText="Value"> |
| <HeaderStyle Width="300px" /> |
| <ItemStyle Width="300px" /> |
| <ItemTemplate> |
| <asp:Literal ID="ValueLabel" runat="server" |
| Text='<%# ((AttributeValue)DataBinder.Eval(Container, "DataItem")).DisplayMarkup %>' /> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridBoundColumn DataField="Note" HeaderText="Note"> |
| <HeaderStyle Width="150px" /> |
| <ItemStyle Width="150px" /> |
| </telerik:GridBoundColumn> |
| <telerik:GridButtonColumn ButtonType="ImageButton" UniqueName="DeleteColumn" CommandName="Delete" |
| ImageUrl="~/App_Themes/Default/buttons/grid_delete.jpg" |
| ConfirmText="<%$Resources:AvailsResources, DeleteConfirmationGeneral%>"> |
| <HeaderStyle Width="20px" /> |
| </telerik:GridButtonColumn> |
| </Columns> |
| <CommandItemSettings AddNewRecordText="Add" /> |
| <EditFormSettings |
| UserControlName="~/Controls/AttributeValueEdit.ascx" |
| EditFormType="WebUserControl" > |
| <EditColumn ButtonType="ImageButton" |
| InsertImageUrl="~/App_Themes/Default/buttons/grid_add.jpg" |
| UpdateImageUrl="~/App_Themes/Default/buttons/grid_update.jpg" |
| CancelImageUrl="~/App_Themes/Default/buttons/grid_cancel.jpg"> |
| </EditColumn> |
| </EditFormSettings> |
| </MasterTableView> |
| </telerik:RadGrid> |
| <table class="standardTable"> |
| <colgroup> |
| <col width="80px" /> |
| <col width="100%" /> |
| </colgroup> |
| <tr> |
| <td> |
| <asp:Label ID="AttributeLabel" runat="server" meta:resourcekey="AttributeLabel" /></td> |
| <td> |
| <asp:DropDownList ID="AttributeEdit" runat="server" AutoPostBack="True" |
| Width="200px" |
| DataValueField="Key" DataTextField="Name" |
| OnSelectedIndexChanged="AttributeEdit_SelectedIndexChanged"> |
| </asp:DropDownList> |
| </td> |
| </tr> |
| <tr> |
| <td> |
| <asp:Label ID="ValueLabel" runat="server" meta:resourcekey="ValueLabel" /> |
| </td> |
| <td> |
| <telerik:RadDatePicker ID="ValueDateEdit" runat="server" Width="104px" Skin="Web20"> |
| <Calendar ID="ValueDateCalendar" runat="server" Skin="Web20"> |
| </Calendar> |
| <DateInput runat="server" EnabledStyle-HorizontalAlign="Right" Skin="Default" MinDate="1900-01-01" DateFormat="<%$ SystemSetting:ShortDatePattern %>" /> |
| <DatePopupButton ImageUrl="~/App_Themes/Default/icons/icon_datePickerPopup.gif" |
| HoverImageUrl="~/App_Themes/Default/icons/icon_datePickerPopupHover.gif" /> |
| </telerik:RadDatePicker> |
| </td> |
| </tr> |
| <tr> |
| <td> |
| <asp:Label ID="NoteLabel" runat="server" meta:resourcekey="NoteLabel" /></td> |
| <td> |
| <asp:TextBox ID="NoteEdit" runat="server" Width="150px" /> |
| </td> |
| </tr> |
| <tr> |
| <td colspan="2"> |
| <asp:Button ID="SaveButton" runat="server" CommandName="Update" meta:resourcekey="SaveButton" /> |
| <asp:Button ID="CancelButton" runat="server" meta:resourcekey="CancelButton" |
| CausesValidation="False" CommandName="Cancel" /> |
| </td> |
| </tr> |
| </table> |
| table.standardTable |
| { |
| table-layout : fixed; |
| border : none 0px; |
| border-collapse : collapse; |
| border-spacing : 0px; |
| } |
| table.standardTable select, table.standardTable input |
| { |
| font : menu; |
| } |
| protected void tk_Grid_ItemDataBound(object sender, GridItemEventArgs e) |
| { |
| if (e.Item is GridDataItem) |
| { |
| GridDataItem dataItem = (GridDataItem)e.Item; |
| HyperLink h1 = new HyperLink(); |
| h1.NavigateUrl = "frmAnexoBalance.aspx?Periodo=APERTURA&MesID=0&TCID=0&GGPPID=" + dataItem["FormatoGananciaPerdidaID"].Text.Trim() + "&FBID=0"; |
| //h1.Target= "blank"; |
| h1.Text = dataItem.GetDataKeyValue("Apertura").ToString(); |
| h1.CssClass = "gridtext"; |
| dataItem["Apertura"].Controls.Add(h1); |
<
add path="Telerik.Web.UI.SpellCheckHandler.axd" verb="*" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Version=2008.1.515.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4"
validate="false" />
was already in there. They're both in now and I'm still getting the error. Any ideas? The error comes up when I try to click on the spellcheck button.
Spell Check Handler Server Error:500
<html>
<head>
<title>Configuration Error</title>
<style>
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
pre {font-family:"Lucida Console";font-size: .9em}
.marker {font-weight: bold; color: black;text-decoration: none;}
.version {color: gray;}
.error {margin-bottom: 10px;}
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
</style>
</head>
<body bgcolor="white">
<span><H1>Server Error in '/AgPlanDev' Application.<hr width=100% size=1 color=silver></H1>
<h2> <i>Configuration Error</i> </h2></span>
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
<b> Description: </b>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.
<br><br>
<b> Parser Error Message: </b>Could not load file or assembly 'Telerik.Web.UI, Version=2008.1.515.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)<br><br>
<b>Source Error:</b> <br><br>
<table width=100% bgcolor="#ffffcc">
<tr>
<td>
<code><pre>
Line 57: validate="false" />
Line 58: <add verb="*" validate="false" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI"/>
<font color=red>Line 59: <add path="Telerik.Web.UI.SpellCheckHandler.axd" verb="*" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Version=2008.1.515.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4"
</font>Line 60: validate="false" />
Line 61: <add path="Telerik.Web.UI.DialogHandler.aspx" verb="*" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Version=2008.2.1001.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4"</pre></code>
</td>
</tr>
</table>
<br>
<b> Source File: </b> C:\websites\CFFM\BizPlan\working folder\AgPlanDev\web.config<b> Line: </b> 59
<br><br>
<b>Assembly Load Trace:</b> The following information can be helpful to determine why the assembly 'Telerik.Web.UI, Version=2008.1.515.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4' could not be loaded.<br><br>
<table width=100% bgcolor="#ffffcc">
<tr>
<td>
<code><pre>
WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].
</pre></code>
</td>
</tr>
</table>
<br>
<hr width=100% size=1 color=silver>
| $find("<%= UserContactsGrid.ClientID %>") |