

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.
|
I'm facing this terrible bug that i can't find any article or workaround for.
Am using RadAsyncUpload in my web form (asp.net) and it so happens that i have a jquery plugin (jquery.ibutton.js) on the same page, which basically handles an iphone switch look and feel for the checkboxes and radiobuttons.
By default, RadAsyncUpload renders as silverlight which works great on all browsers. However, when i added the iButton plugin on the same page as the AsyncUpload in (chrome/safari), the AsyncUpload control is untouchable. I can't touch it, click it or interact with it. Its like its just blocked somehow!! But it works fine on all the other browsers, even IE -_- (shocker)
I figured out the relation when i removed the iButton plugin constructor and everything went back to normal.
Can someone maybe help me with some feedback or if he can repro this bug...much appreciated
Note: I did try to switch off the silverlight module in order for flash to kick in. It seemed to work, but after i select a file this JS Error takes place and i have no clue how to handle it (Uncaught Syntax error, unrecognized expression #[object Object])<%@ Control Language="vb" AutoEventWireup="false" CodeBehind="TabControl.ascx.vb" Inherits="CustomSkin_Hew.TabControl" %><telerik:RadTabStrip ID="RadAjaxTabStrip1" runat="server" AutoPostBack="false" Align="Left" Orientation="HorizontalTop" ShowBaseLine="true" Width="100%"> <Tabs> <telerik:RadTab Text="Page1 Long Title" runat="server" Width="20%"> </telerik:RadTab> <telerik:RadTab Text="Page2" runat="server" Width="20%"> </telerik:RadTab> <telerik:RadTab Text="Page3" runat="server" Width="20%"> </telerik:RadTab> <telerik:RadTab Text="Page4" runat="server" Width="20%"> </telerik:RadTab> <telerik:RadTab Text="Page5" runat="server" Width="19%"> </telerik:RadTab> </Tabs></telerik:RadTabStrip><tr> <td> <asp:Label ID="Label2" runat="server" Text="RadTabStrip"></asp:Label> </td></tr><tr> <td> <telerik:RadTabStrip ID="RadTabStrip1" runat="server" SelectedIndex="3" Align="left" Orientation="HorizontalTop" ShowBaseLine="true" TabIndex="-1"> <Tabs> <telerik:RadTab runat="server" Text="Root RadTab1"> <Tabs> <telerik:RadTab runat="server" Text="Child RadTab 1"> </telerik:RadTab> </Tabs> </telerik:RadTab> <telerik:RadTab runat="server" Text="Root RadTab2"> <Tabs> <telerik:RadTab runat="server" Text="Child RadTab 2"> </telerik:RadTab> </Tabs> </telerik:RadTab> <telerik:RadTab runat="server" Text="Root RadTab3"> </telerik:RadTab> <telerik:RadTab runat="server" Text="Root RadTab4" Selected="True"> </telerik:RadTab> </Tabs> </telerik:RadTabStrip> </td></tr><tr> <td> </td></tr><tr> <td> <rad:TabControl runat="server" ID="objTab"></rad:TabControl> </td></tr>if (!IsPostBack) {rddlVendors.Visible = false; DataTable dtVendors = dbMain.get_VendorList_by_AccountID_ForMenu((int)Session["AccountID"]); if (dtVendors.Rows.Count > 0) { if (dtVendors.Rows.Count > 1) { rddlVendors.Visible = true; rddlVendors.DataSource = dtVendors; rddlVendors.DataTextField = "name"; rddlVendors.DataValueField = "ID"; rddlVendors.DataBind(); rddlVendors.SelectedValue = Session["VendorID"].ToString(); } }}