Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
115
Firefox 10 and WebCombo
posted

Hi,

We were testing our solution that controls the classic Infragistics ASP.NET Controls with Firefox 10. It seems that they are not compatible with Firefox 10. Are there plans on making them compatible with Firefox 10?

Thanks,

Norman

Parents
No Data
Reply
  • 215
    posted

    The classic UltraWebToolbar is having same error as WebCombo (i have version 8.3). My friend tell me : the problem lies in the code developer extract the major and minor version from Page.Request.Browser.version

    string version = this.Page.Request.Browser.Version;
    int num = Convert.ToInt32(version.Substring(0, 1));
    int num2 = Convert.ToInt32(version.Substring(2, 1));

    So with Firefox 10 with version string like 10.010.0 , version.Substring(2, 1) = '.' will cause the error

    [FormatException: Input string was not in a correct format.] :(

     

Children