Here is my aspx:
<telerik:RadComboBox ID="RadComboBox1" Runat="server" |
DataSourceID="SqlDataSource1" DataTextField="addr_line_1" |
DataValueField="address_id" Skin="Sunset" Width="250px" |
OnSelectedIndexChanged="RadComboBox1_SelectedIndexChanged" AutoPostBack="True"> |
<CollapseAnimation Duration="200" Type="OutQuint" /> |
</telerik:RadComboBox> |
And here is my code behind(c#):
protected void RadComboBox1_SelectedIndexChanged(object o, Telerik.Web.UI.RadComboBoxSelectedIndexChangedEventArgs e) |
{ |
if (RadComboBox1.SelectedItem != null) |
lblAddrLine1.Visible = true; |
lblAddrLine1.Text = String.Format("Address Line 1: '{0}'", RadComboBox1.SelectedItem.Text); |
} |
I get this error in IE7:
Line: 605
Char: 13
Error: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500
Code: 0
URL: this is the url of my site
Any ideas what could be causing this?
Thanks,
Greg