I just changed the dll file, and I got this error now. Here is my webconfig file : http://www.x-it.be/webconfig.zip
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.IO.FileLoadException: Could not load file or assembly 'Telerik.Web.UI, Version=2008.3.1105.35, 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)
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. |
|
|
Version Information: Microsoft .NET Framework Version:2.0.50727.3053; ASP.NET Version:2.0.50727.3053

Hi All
I have a RadComboBox and RadTextInput that provide pararmeters for a SQLDataSource control. A RadGrid then pulls it's data from the SQLDataSource. The first time I load the page, I can choose an item in the combobox, enter some text, and the RadGrid binds to the datasource and displays the data fine.
If I then select something else in the combobox, or enter different text in the textinput fields and autopostback, then RadGrid will refresh BUT it continues to display the original data. It seems either the RadGrid is not refreshing itself from the datasource, or my input fields aren't updating the datasource properly.
Any ideas? Code follows...
Thanks
Mark
| <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> |
| </telerik:RadScriptManager> |
| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" DefaultLoadingPanelID="RadAjaxLoadingPanel1"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="radddlLocation_id"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="SQL_Locations" /> |
| <telerik:AjaxUpdatedControl ControlID="radddlProvider_no" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| <telerik:AjaxSetting AjaxControlID="btnFetchPatients"> |
| <updatedcontrols> |
| <telerik:AjaxUpdatedControl ControlID="RadGrid1" /> |
| </updatedcontrols> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Height="75px" |
| Width="75px"> |
| <img alt="Loading..." src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading.gif") %>' style="border: 0px;" /> |
| </telerik:RadAjaxLoadingPanel> |
| <h2>IMACAM Image Upload</h2> |
| <asp:Label ID="lblStatus" runat="server" Text="Label" ForeColor="Maroon" |
| Visible="False" Font-Bold="True"></asp:Label> |
| <br /> |
| <strong>1 Select Location</strong> |
| <br /> |
| <telerik:RadComboBox ID="radddlLocation_id" runat="server" AppendDataBoundItems="True" |
| DataSourceID="SQL_Locations" DataTextField="name" DataValueField="LocationId" |
| Skin="Office2007" OnSelectedIndexChanged="radddlLocation_id_SelectedIndexChanged" |
| Width="250px" MarkFirstMatch="True" NoWrap="True" Text="Select location" |
| AutoPostBack="True"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </telerik:RadComboBox> |
| <asp:SqlDataSource ID="SQL_Locations" runat="server" ConnectionString="<%$ ConnectionStrings:OmateSQLConnectionString %>" |
| SelectCommand="SELECT location_city + ', ' + LocDisplayName AS name, LocationId FROM Location ORDER BY location_city"> |
| </asp:SqlDataSource> |
| <br /> |
| <br /> |
| <strong>2 Select Provider</strong><br /> |
| <telerik:RadComboBox ID="radddlProvider_no" Runat="server" |
| DataSourceID="SQL_Providers" DataTextField="fullname" |
| DataValueField="provider_no" MarkFirstMatch="True" NoWrap="True" |
| onselectedindexchanged="radddlProvider_no_SelectedIndexChanged" |
| Skin="Office2007" Width="250px"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </telerik:RadComboBox> |
| <asp:SqlDataSource ID="SQL_Providers" runat="server" |
| ConnectionString="<%$ ConnectionStrings:OmateSQLConnectionString %>" |
| SelectCommand="SELECT [provider_no], [provider_last_name] + ' ' + [provider_first_name] AS [fullname] FROM [provider] WHERE ([default_Location] = @default_Location) ORDER BY [fullname]"> |
| <SelectParameters> |
| <asp:ControlParameter ControlID="radddlLocation_id" Name="default_Location" |
| PropertyName="SelectedValue" Type="Int32" /> |
| </SelectParameters> |
| </asp:SqlDataSource> |
| <br /> |
| <br /> |
| <strong>3 Select Patient</strong><br /> |
| <telerik:RadTextBox ID="radtxtFirstName" runat="server" EmptyMessage="Enter Firstname" |
| Skin="Office2007" Width="125px"> |
| </telerik:RadTextBox> |
| <telerik:RadTextBox ID="radtxtLastName" runat="server" EmptyMessage="Enter Lastname" |
| Skin="Office2007" Width="125px"> |
| </telerik:RadTextBox> |
| <asp:Button ID="btnFetchPatients" runat="server" Height="26px" Text="Go >>" /> |
| <br /> |
| <br /> |
| <telerik:RadGrid ID="RadGrid1" runat="server" |
| AllowSorting="True" AutoGenerateColumns="False" |
| DataSourceID="SQL_Patients" GridLines="None" HorizontalAlign="Left" |
| PageSize="5" Skin="Office2007" Width="500px" Height="170px" |
| onselectedindexchanged="RadGrid1_SelectedIndexChanged"> |
| <HeaderContextMenu EnableTheming="True" Skin="Hay"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </HeaderContextMenu> |
| <MasterTableView DataSourceID="SQL_Patients" datakeynames="Patient_no" |
| nomasterrecordstext="Patient record not found. Please check the name and location specified."> |
| <RowIndicatorColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </RowIndicatorColumn> |
| <ExpandCollapseColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </ExpandCollapseColumn> |
| <Columns> |
| <telerik:GridButtonColumn ButtonType="PushButton" CommandName="Select" Text="Select" |
| UniqueName="Select"> |
| </telerik:GridButtonColumn> |
| <telerik:GridBoundColumn DataField="first_name" HeaderText="First Name" SortExpression="first_name" |
| UniqueName="first_name"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="last_name" HeaderText="Last Name" SortExpression="last_name" |
| UniqueName="last_name"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="Patient_no" HeaderText="Patient Number" |
| SortExpression="Patient_no" UniqueName="Patient_no"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="ss_no" HeaderText="SSN" SortExpression="ss_no" |
| UniqueName="ss_no"> |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="locdisplayname" HeaderText="Location" |
| SortExpression="locdisplayname" UniqueName="Location"> |
| </telerik:GridBoundColumn> |
| </Columns> |
| </MasterTableView> |
| <ClientSettings> |
| <Scrolling AllowScroll="True" UseStaticHeaders="True" /> |
| </ClientSettings> |
| <FilterMenu EnableTheming="True" Skin="Hay"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </FilterMenu> |
| </telerik:RadGrid> |
| <asp:SqlDataSource ID="SQL_Patients" runat="server" ConnectionString="<%$ ConnectionStrings:OmateSQLConnectionString %>" |
| SelectCommand="SELECT patient.ss_no, patient.first_name, patient.last_name, patient.suffix, Location.location_city, patient.patient_no, Location.LocDisplayName FROM patient INNER JOIN Location ON patient.LocationID = Location.LocationId WHERE (patient.first_name = @first_name) AND (patient.last_name = @last_name) AND (patient.locationid = @location_id) |
| ORDER BY Location.LocDisplayName"> |
| <SelectParameters> |
| <asp:ControlParameter ControlID="radtxtFirstName" Name="first_name" PropertyName="Text" |
| Type="String" /> |
| <asp:ControlParameter ControlID="radtxtLastName" Name="last_name" PropertyName="Text" |
| Type="String" /> |
| <asp:ControlParameter ControlID="radddlLocation_id" Name="location_id" |
| PropertyName="SelectedValue" /> |
| </SelectParameters> |
| </asp:SqlDataSource> |
| <br /> |
| <br /> |
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
this.RadTreeView1.AppendDataBoundItems = true;
this.RadTreeView1.PersistLoadOnDemandNodes = true;
this.RadTreeView1.Nodes.Add(new RadTreeNode("root1"));
this.RadTreeView1.Nodes.Add(new RadTreeNode("root2"));
this.RadTreeView1.Nodes.Add(new RadTreeNode("root3"));
RadTreeNode root4 = new RadTreeNode("root4");
TextBox textbox1 = new TextBox();
root4.Controls.Add(textbox1);
root4.Value =
"Templated";
this.RadTreeView1.Nodes.Add(root4);
this. RadTreeView1.DataBind();
}