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
30
IE6 and webgrid databind errors
posted

Hi, i am having a problem with IE6.

When i have more than 1 webgrid on an aspx page, if i databind to more than one of the grids i get an unspecifed error. This problem only occurs in IE6. I guess its a communications issue..

 

Here is the code i am using in the page load..

    SqlDataSourceMonthly.SelectCommand = "exec get_current_monthly_results " & Request.QueryString("kpi")
   uwgMonthlyResults.DataBind()

        SqlDataSourceAnnual.SelectCommand = "exec get_current_annual_results " & Request.QueryString("kpi")
        uwgAnnual.DataBind()

 any ideas ?

 

Nick :(