asp.net - Firefox not loading all objects -
i've report has 5 pages(graphs) called through firefox send mails respective users.the scripting done in .net(and i'm novice @ it).
the process used work fine until few days,but since past few days process has been failing send mail firefox loading 2 pages(graphs) , exiting after that.
it sends mail when manually drag scrollbar load 5 pages.
what reason that's stopping loading 5 images(graphs).
we've removed add-ons except shock wave flash plugin required report.
thanks lot!
if (ds.tables[0].rows.count > 0) { (int = 0; <= ds.tables[0].rows.count; i++) { if (i < ds.tables[0].rows.count) { process p = process.start(@"c:\program files (x86)\mozilla firefox\firefox.exe", "http://172.18.12.13/charts/dailyreport.aspx?ceid=" + ds.tables[0].rows[i]["loginid"].tostring() + "&cename=" + ds.tables[0].rows[i]["loginname"].tostring() + "&email=" + ds.tables[0].rows[i]["emailid"].tostring()); thread.sleep(timeinterval); if (!p.hasexited) p.kill(); } else { // process p = process.start(@"c:\program files (x86)\mozilla firefox\firefox.exe", "http://172.18.12.13/charts/customreports.aspx"); // thread.sleep(timeinterval); // if (!p.hasexited) // p.kill(); process global = process.start(@"c:\program files (x86)\mozilla firefox\firefox.exe", "http://172.18.12.13/charts/report_global.aspx"); thread.sleep(timeinterval); if (!global.hasexited) global.kill(); }
so achieved using scrollbar function written in aspx.below code,just in case faces similar situation.
`function scrolldown() { window.scrollby(0, 50); scrolldelay = settimeout('scrolldown()', 100); <body onload="scrolldown()"> <form id="form1" runat="server"> <div> <asp:literal id ="chart1" runat="server"></asp:literal> <asp:literal id ="chart2" runat="server"></asp:literal> <asp:literal id ="chart3" runat="server"></asp:literal> <asp:literal id ="chart4" runat="server"></asp:literal> <asp:literal id ="chart5" runat="server"></asp:literal> </div> </form> </body>`
Comments
Post a Comment