| Home | Forums | Reviews | Guides | Newsgroups | Register | Search |
![]() |
| Thread Tools |
| SAL |
|
|
|
| |
|
Allen Chen
Guest
Posts: n/a
|
Hi SAL
From your description your page doesn't display the expected layout in FireFox (I have two questions as to this: What's the version of the FireFox? Does it work in IE?). Based on my experience it's generally caused by the different rendering engine of different browsers. FireFox uses Gecko while IE uses MSHTML. If you could send me a demo project that can reproduce this problem I'll try to find the root cause and a workaround if there is. My email is v-. Regards Allen Chen Microsoft Online Support Delighting our customers is our #1 priority. We welcome your comments and suggestions about how we can improve the support we provide to you. Please feel free to let my manager know what you think of the level of service provided. You can send feedback directly to my manager at: . ================================================== Get notification to my posts through email? Please refer to http://msdn.microsoft.com/subscripti...ult.aspx#notif ications. Note: The MSDN Managed Newsgroup support offering is for non-urgent issues where an initial response from the community or a Microsoft Support Engineer within 1 business day is acceptable. Please note that each follow up response may take approximately 2 business days as the support professional working with you may need further investigation to reach the most efficient resolution. The offering is not appropriate for situations that require urgent, real-time or phone-based interactions or complex project analysis and dump analysis issues. Issues of this nature are best handled working with a dedicated Microsoft Support Engineer by contacting Microsoft Customer Support Services (CSS) at http://msdn.microsoft.com/subscripti...t/default.aspx. ================================================== This posting is provided "AS IS" with no warranties, and confers no rights. -------------------- | From: "SAL" <> | Subject: munged rendering in Firefox ASP.NET 2.0 | Date: Fri, 25 Jul 2008 13:45:39 -0700 | Lines: 28 | X-Priority: 3 | X-MSMail-Priority: Normal | X-Newsreader: Microsoft Outlook Express 6.00.2900.3138 | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198 | X-RFC2646: Format=Flowed; Original | Message-ID: <> | Newsgroups: microsoft.public.dotnet.framework.aspnet | NNTP-Posting-Host: host189114.clark.wa.gov 64.4.189.114 | Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSF TNGP04.phx.gbl | Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.dotnet.framework.aspnet:72609 | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet | | Hello, I did google this issue and found some stuff related to BrowserCaps | section of either web.config or machine.config but it didn't work. | | It seems that most pages in my webapp are okay but a couple of the Firefox | is munging up. | So, on my information page there is a gridview in the content section of the | page. The masterpage contains searching capabilities for the gridview. The | masterpage has controls contained in a panel control, labels, textboxes a | dropdownlist and a button to execute the search. Firefox shows the Gridview | just fine but it looks like it's overlaying the masterpage onto the top part | of the gridview. | I dropped the browsercaps section from slingfive into my web.config file but | it didn't change anything. | | I tried replacing the panel with a placeholder and it fixed the munging | problem but the text box widths don't render the same either. My master page | contains stuff for the header of everypage and there's a dropdownlist in | there with some other stuff. This gets kind of munged too. | Now, I could go through and make some similar changes to the master page | like I did with replacing the panel server control with a placeholder but it | seems like there should be a better way to make this stuff render correctly | in Firefox. | | Any help here with this issue? | | SAL | | | |
|
|
|
|
|||
|
|||
| Allen Chen |
|
|
|
| |
|
Allen Chen
Guest
Posts: n/a
|
Hi Steve,
Thanks for your project. For your convenience I copied your reply here: Allen, thank you for your reply. Does it work in IE-- Yes What version of Firefox-- 3.0.1 I have attached a sample program that reproduces the problem. In the main content, the content from the masterpage overlaps the content of the grid in the child page. I have this same basic problem with a very detailed page in my production website along with a more simple one like this one in this sample. In the header area, the dropdownlist does not display it's height properly. I have included the databases from SQLServer express. You will need to change the connection strings perhaps and attach the databases to an install on your machine maybe. Let me know if I have left something out. Steve Long GIS Analyst Clark County, WA 360-397-2092 ext 4421 I've tested it in IE 7 but still get the overlapped GridView. To clarify the problem I've sent you an email with a screenshot. Please check if the layout is what you've seen in FireFox. If it's the same layout here's the solution: 1. Open the master page GISMasterSearch.master with Notepad. 2. Search "Panel1" in it and remove the Height from the element: <asp ID="Panel1" runat="server" Width="642px" BorderStyle="Solid" BorderWidth=0px BorderColor=lightGray>. 3. Save the file and close it. Here are the steps how I troubleshoot: 1. I opened your page and found the GridView is overlapped. 2. I viewed the source and copied all the content in a newly created testpage.aspx. The reason to do this is that I can simply edit the page and preview the layout in Split view of Visual Studio. 3. I removed other irrelevant html tags one by one to narrow it down. 4. Finally here's the concise html that can reproduce this problem: ================================================== <table border="0" cellpadding="0" cellspacing="0" width=100% style="position: relative; height: 528px" > <tr> <!-- SECOND COLUMN of "BODY" TABLE --> <td bgcolor=white valign=top style="height: 475px" > <a id="ctl00_Menu1_SkipLink"></a> <br /> <div id="ctl00_Panel1" style="border-color:LightGrey;border-width:0px;border-style:Solid;height:50p x;width:642px;"> <table cols=2 style="width: 376px; height: 152px; font-family: Arial; font-size: medium" id="tblSearch"> <tr> <td style="width: 232px"> <span id="ctl00_lblName">Annexation Name</span></td> <td style="width: 192px"> <input name="ctl00$txtName" type="text" id="ctl00_txtName" /></td> </tr> <tr> <td style="width: 232px"> <span id="ctl00_lblAgency">Annexation Agency</span></td> <td style="width: 192px"> <input name="ctl00$txtAgency" type="text" id="ctl00_txtAgency" /></td> </tr> <tr> <td style="width: 232px; height: 12px"> <span id="ctl00_lblStatus">Agency Status</span></td> <td style="width: 192px; height: 12px"> <select name="ctl00$ddlStatus" id="ctl00_ddlStatus" title="Annexation Status may be mixed with Agency to get a list of agencies with status" style="width:153px;"> <option selected="selected" value="-1">None</option> <option value="1">Proposed</option> <option value="2">In Process</option> <option value="3">Certified</option> <option value="4">Completed</option> <option value="8">Failed</option> <option value="9">No Data</option> </select></td> </tr> <tr> <td style="width: 232px; height: 12px"> <span id="ctl00_lblTaxYear">Tax Year</span></td> <td style="width: 192px; height: 12px"> <input name="ctl00$txtTaxYear" type="text" id="ctl00_txtTaxYear" style="width:148px;" /></td> </tr> <tr> <td style="width: 232px; height: 12px"> <span id="ctl00_lblEffectiveYear">Effective Year</span></td> <td style="width: 192px; height: 12px"> <input name="ctl00$txtEffectiveYear" type="text" id="ctl00_txtEffectiveYear" style="width:148px;" /></td> </tr> <tr> <td style="width: 232px; height: 12px"> </td> <td style="width: 192px; height: 12px"> <input type="submit" name="ctl00$Button1" value="Search" id="ctl00_Button1" title="Leave all field blank to select all" style="width:153px;" /></td> </tr> <tr> <td style="width: 232px; height: 12px"> </td> <td style="width: 192px; height: 12px"> <a id="ctl00_lbtnChangePwd" href="javascript:__doPostBack('ctl00$lbtnChangePwd ','')">Change Password</a></td> </tr> </table> </div> <div> <table cellspacing="0" rules="all" border="1" id="ctl00_MainContent_OrgUnitsgv" style="border-collapse:collapse;"> <tr> <th scope="col">Org Unit ID</th><th scope="col">L1</th><th scope="col">L2</th><th scope="col">L3</th><th scope="col">USER</th> </tr><tr> <td>1</td><td>Sheriff</td><td>na</td><td>na</td><td>MAIN DID SHERIFF</td> </tr><tr> <td>2</td><td>General Services</td><td>Purchasing</td><td>na</td><td>MAIN DID PURCHASING</td> </tr><tr> <td>3</td><td>Medical Examiner</td><td>na</td><td>na</td><td>MAIN DID MEDICAL EXAMINER</td> </tr><tr> <td>4</td><td>Public Works</td><td>na</td><td>na</td><td>MAIN DID PUBLIC WORKS</td> </tr><tr> <td>5</td><td>Public Works</td><td>Operations</td><td>na</td><td>MAIN DID ROAD MAINTANANCE</td> </tr><tr> <td>7</td><td>Public Works</td><td>Environmental Services</td><td>na</td><td>MAIN DID PUBLIC WORKS</td> </tr><tr> <td>11</td><td>Human Resources</td><td>na</td><td>na</td><td>MAIN DID HUMAN RESOURCES</td> </tr><tr> <td>12</td><td>Juvenile</td><td>na</td><td>na</td><td>MAIN DID JUVENILE</td> </tr><tr> <td>13</td><td>CRCA</td><td>na</td><td>na</td><td>MAIN DID CRCA</td> </tr><tr> <td>14</td><td>General Services</td><td>Risk Management</td><td>na</td><td>MAIN DID RISK MANAGEMENT</td> </tr><tr> <td colspan="5"><table border="0"> <tr> <td><span>1</span></td><td><a href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$2')">2</a ></td><td><a href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$3')">3</a ></td><td><a href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$4')">4</a ></td><td><a href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$5')">5</a ></td><td><a href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$6')">6</a ></td><td><a href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$7')">7</a ></td><td><a href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$8')">8</a ></td><td><a href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$9')">9</a ></td><td><a href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$10')">10< /a></td><td><a href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$11')">... </a></td> </tr> </table></td> </tr> </table> </div> <br /> <br /> <br /> <br /> <br /> </td> </tr> </table> </td> </tr> </table> ================================================== 5. Now it's obvious that the style of the div (or table) causes this problem. I removed the height of ctl00_Panel1 and it works fine then. 6. Then I need to find the counterpart in the master page that renders this div and change the style. I opened GISMasterSearch.master and searched "Panel1" to find the Panel. I saw the Height is hard coded there. So I removed it and the problem was gone. If you have further questions please feel free to ask. Regards Allen Chen Microsoft Online Support -------------------- | X-Tomcat-ID: 106961535 | References: <> | MIME-Version: 1.0 | Content-Type: text/plain | Content-Transfer-Encoding: 7bit | From: v- (Allen Chen) | Organization: Microsoft | Date: Mon, 28 Jul 2008 08:29:38 GMT | Subject: RE: munged rendering in Firefox ASP.NET 2.0 | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet | Message-ID: <> | Newsgroups: microsoft.public.dotnet.framework.aspnet | Lines: 104 | Path: TK2MSFTNGHUB02.phx.gbl | Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.dotnet.framework.aspnet:72692 | NNTP-Posting-Host: tk5tomimport1.phx.gbl 10.201.218.19 | | Hi SAL | From your description your page doesn't display the expected layout in | FireFox (I have two questions as to this: What's the version of the | FireFox? Does it work in IE?). | Based on my experience it's generally caused by the different rendering | engine of different browsers. FireFox uses Gecko while IE uses MSHTML. | If you could send me a demo project that can reproduce this problem I'll | try to find the root cause and a workaround if there is. | My email is v-. | | Regards | Allen Chen | Microsoft Online Support | | Delighting our customers is our #1 priority. We welcome your comments and | suggestions about how we can improve the support we provide to you. Please | feel free to let my manager know what you think of the level of service | provided. You can send feedback directly to my manager at: | . | | ================================================== | Get notification to my posts through email? Please refer to | http://msdn.microsoft.com/subscripti...ult.aspx#notif | ications. | | Note: The MSDN Managed Newsgroup support offering is for non-urgent issues | where an initial response from the community or a Microsoft Support | Engineer within 1 business day is acceptable. Please note that each follow | up response may take approximately 2 business days as the support | professional working with you may need further investigation to reach the | most efficient resolution. The offering is not appropriate for situations | that require urgent, real-time or phone-based interactions or complex | project analysis and dump analysis issues. Issues of this nature are best | handled working with a dedicated Microsoft Support Engineer by contacting | Microsoft Customer Support Services (CSS) at | http://msdn.microsoft.com/subscripti...t/default.aspx. | ================================================== | This posting is provided "AS IS" with no warranties, and confers no rights. | | | -------------------- | | From: "SAL" <> | | Subject: munged rendering in Firefox ASP.NET 2.0 | | Date: Fri, 25 Jul 2008 13:45:39 -0700 | | Lines: 28 | | X-Priority: 3 | | X-MSMail-Priority: Normal | | X-Newsreader: Microsoft Outlook Express 6.00.2900.3138 | | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198 | | X-RFC2646: Format=Flowed; Original | | Message-ID: <> | | Newsgroups: microsoft.public.dotnet.framework.aspnet | | NNTP-Posting-Host: host189114.clark.wa.gov 64.4.189.114 | | Path: TK2MSFTNGHUB02.phx.gbl!TK2MSFTNGP01.phx.gbl!TK2MSF TNGP04.phx.gbl | | Xref: TK2MSFTNGHUB02.phx.gbl | microsoft.public.dotnet.framework.aspnet:72609 | | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet | | | | Hello, I did google this issue and found some stuff related to | BrowserCaps | | section of either web.config or machine.config but it didn't work. | | | | It seems that most pages in my webapp are okay but a couple of the | Firefox | | is munging up. | | So, on my information page there is a gridview in the content section of | the | | page. The masterpage contains searching capabilities for the gridview. | The | | masterpage has controls contained in a panel control, labels, textboxes a | | dropdownlist and a button to execute the search. Firefox shows the | Gridview | | just fine but it looks like it's overlaying the masterpage onto the top | part | | of the gridview. | | I dropped the browsercaps section from slingfive into my web.config file | but | | it didn't change anything. | | | | I tried replacing the panel with a placeholder and it fixed the munging | | problem but the text box widths don't render the same either. My master | page | | contains stuff for the header of everypage and there's a dropdownlist in | | there with some other stuff. This gets kind of munged too. | | Now, I could go through and make some similar changes to the master page | | like I did with replacing the panel server control with a placeholder but | it | | seems like there should be a better way to make this stuff render | correctly | | in Firefox. | | | | Any help here with this issue? | | | | SAL | | | | | | | | |
|
|
|
|
|||
|
|||
| Allen Chen |
|
SAL
Guest
Posts: n/a
|
Allen,
Removing the height from the panel control did indeed stop it from overlapping. I also had to remove the height attribute from the dropdownlist at the top of the page to keep it from looking munged up(squished down actually). The website is looking good now in firefox and IE 6.x Thank you for the good support S "Allen Chen" wrote: > Hi Steve, > > Thanks for your project. For your convenience I copied your reply here: > > Allen, > thank you for your reply. > Does it work in IE-- Yes > What version of Firefox-- 3.0.1 > I have attached a sample program that reproduces the problem. > In the main content, the content from the masterpage overlaps the content > of the grid in the child page. I have this same basic problem with a very > detailed page in my production website along with a more simple one like > this one in this sample. > In the header area, the dropdownlist does not display it's height properly. > I have included the databases from SQLServer express. You will need to > change the connection strings perhaps and attach the databases to an > install on your machine maybe. Let me know if I have left something out. > I've tested it in IE 7 but still get the overlapped GridView. To clarify > the problem I've sent you an email with a screenshot. Please check if the > layout is what you've seen in FireFox. > If it's the same layout here's the solution: > 1. Open the master page GISMasterSearch.master with Notepad. > 2. Search "Panel1" in it and remove the Height from the element: <asp > ID="Panel1" runat="server" Width="642px" BorderStyle="Solid" > BorderWidth=0px BorderColor=lightGray>. > 3. Save the file and close it. > Here are the steps how I troubleshoot: > 1. I opened your page and found the GridView is overlapped. > 2. I viewed the source and copied all the content in a newly created > testpage.aspx. The reason to do this is that I can simply edit the page and > preview the layout in Split view of Visual Studio. > 3. I removed other irrelevant html tags one by one to narrow it down. > 4. Finally here's the concise html that can reproduce this problem: > ================================================== > <table border="0" cellpadding="0" cellspacing="0" width=100% > style="position: relative; height: 528px" > > <tr> > <!-- SECOND COLUMN of "BODY" TABLE --> > <td bgcolor=white valign=top style="height: 475px" > > > <a id="ctl00_Menu1_SkipLink"></a> > <br /> > <div id="ctl00_Panel1" > style="border-color:LightGrey;border-width:0px;border-style:Solid;height:50p > x;width:642px;"> > > <table cols=2 style="width: 376px; height: 152px; font-family: Arial; > font-size: medium" id="tblSearch"> > <tr> > <td style="width: 232px"> > <span > id="ctl00_lblName">Annexation Name</span></td> > <td style="width: 192px"> > <input name="ctl00$txtName" > type="text" id="ctl00_txtName" /></td> > > </tr> > <tr> > <td style="width: 232px"> > <span > id="ctl00_lblAgency">Annexation Agency</span></td> > <td style="width: 192px"> > <input > name="ctl00$txtAgency" type="text" id="ctl00_txtAgency" /></td> > > </tr> > <tr> > <td style="width: 232px; > height: 12px"> > <span > id="ctl00_lblStatus">Agency Status</span></td> > <td style="width: 192px; > height: 12px"> > <select name="ctl00$ddlStatus" > id="ctl00_ddlStatus" title="Annexation Status may be mixed with Agency to > get a list of agencies with status" style="width:153px;"> > <option selected="selected" value="-1">None</option> > <option value="1">Proposed</option> > <option value="2">In Process</option> > <option value="3">Certified</option> > <option value="4">Completed</option> > <option value="8">Failed</option> > <option value="9">No Data</option> > > </select></td> > > </tr> > <tr> > <td style="width: 232px; > height: 12px"> > <span > id="ctl00_lblTaxYear">Tax Year</span></td> > <td style="width: 192px; > height: 12px"> > <input name="ctl00$txtTaxYear" > type="text" id="ctl00_txtTaxYear" style="width:148px;" /></td> > > </tr> > <tr> > <td style="width: 232px; > height: 12px"> > <span > id="ctl00_lblEffectiveYear">Effective Year</span></td> > <td style="width: 192px; > height: 12px"> > <input name="ctl00$txtEffectiveYear" > type="text" id="ctl00_txtEffectiveYear" style="width:148px;" /></td> > > </tr> > <tr> > <td style="width: 232px; > height: 12px"> > </td> > <td style="width: 192px; > height: 12px"> > <input type="submit" > name="ctl00$Button1" value="Search" id="ctl00_Button1" title="Leave all > field blank to select all" style="width:153px;" /></td> > > </tr> > <tr> > <td style="width: 232px; > height: 12px"> > </td> > <td style="width: 192px; > height: 12px"> > <a id="ctl00_lbtnChangePwd" > href="javascript:__doPostBack('ctl00$lbtnChangePwd ','')">Change > Password</a></td> > > </tr> > </table> > > </div> > > > <div> > <table cellspacing="0" rules="all" border="1" > id="ctl00_MainContent_OrgUnitsgv" style="border-collapse:collapse;"> > <tr> > <th scope="col">Org Unit ID</th><th scope="col">L1</th><th > scope="col">L2</th><th scope="col">L3</th><th scope="col">USER</th> > </tr><tr> > <td>1</td><td>Sheriff</td><td>na</td><td>na</td><td>MAIN DID SHERIFF</td> > </tr><tr> > <td>2</td><td>General > Services</td><td>Purchasing</td><td>na</td><td>MAIN DID PURCHASING</td> > </tr><tr> > <td>3</td><td>Medical Examiner</td><td>na</td><td>na</td><td>MAIN DID > MEDICAL EXAMINER</td> > </tr><tr> > <td>4</td><td>Public Works</td><td>na</td><td>na</td><td>MAIN DID PUBLIC > WORKS</td> > </tr><tr> > <td>5</td><td>Public Works</td><td>Operations</td><td>na</td><td>MAIN > DID ROAD MAINTANANCE</td> > </tr><tr> > <td>7</td><td>Public Works</td><td>Environmental > Services</td><td>na</td><td>MAIN DID PUBLIC WORKS</td> > </tr><tr> > <td>11</td><td>Human Resources</td><td>na</td><td>na</td><td>MAIN DID > HUMAN RESOURCES</td> > </tr><tr> > <td>12</td><td>Juvenile</td><td>na</td><td>na</td><td>MAIN DID > JUVENILE</td> > </tr><tr> > <td>13</td><td>CRCA</td><td>na</td><td>na</td><td>MAIN DID CRCA</td> > </tr><tr> > <td>14</td><td>General Services</td><td>Risk > Management</td><td>na</td><td>MAIN DID RISK MANAGEMENT</td> > </tr><tr> > <td colspan="5"><table border="0"> > <tr> > <td><span>1</span></td><td><a > href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$2')">2</a > ></td><td><a > href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$3')">3</a > ></td><td><a > href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$4')">4</a > ></td><td><a > href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$5')">5</a > ></td><td><a > href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$6')">6</a > ></td><td><a > href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$7')">7</a > ></td><td><a > href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$8')">8</a > ></td><td><a > href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$9')">9</a > ></td><td><a > href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$10')">10< > /a></td><td><a > href="javascript:__doPostBack('ctl00$MainContent$O rgUnitsgv','Page$11')">... > </a></td> > </tr> > </table></td> > </tr> > </table> > </div> > > > <br /> > <br /> > <br /> > <br /> > <br /> > </td> > </tr> > </table> > > > > </td> > </tr> > </table> > ================================================== > 5. Now it's obvious that the style of the div (or table) causes this > problem. I removed the height of ctl00_Panel1 and it works fine then. > 6. Then I need to find the counterpart in the master page that renders this > div and change the style. I opened GISMasterSearch.master and searched > "Panel1" to find the Panel. I saw the Height is hard coded there. So I > removed it and the problem was gone. > > If you have further questions please feel free to ask. > > Regards > Allen Chen > Microsoft Online Support > > -------------------- > | X-Tomcat-ID: 106961535 > | References: <> > | MIME-Version: 1.0 > | Content-Type: text/plain > | Content-Transfer-Encoding: 7bit > | From: v- (Allen Chen) > | Organization: Microsoft > | Date: Mon, 28 Jul 2008 08:29:38 GMT > | Subject: RE: munged rendering in Firefox ASP.NET 2.0 > | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet > | Message-ID: <> > | Newsgroups: microsoft.public.dotnet.framework.aspnet > | Lines: 104 > | Path: TK2MSFTNGHUB02.phx.gbl > | Xref: TK2MSFTNGHUB02.phx.gbl > microsoft.public.dotnet.framework.aspnet:72692 > | NNTP-Posting-Host: tk5tomimport1.phx.gbl 10.201.218.19 > | > | Hi SAL > | From your description your page doesn't display the expected layout in > | FireFox (I have two questions as to this: What's the version of the > | FireFox? Does it work in IE?). > | Based on my experience it's generally caused by the different rendering > | engine of different browsers. FireFox uses Gecko while IE uses MSHTML. > | If you could send me a demo project that can reproduce this problem I'll > | try to find the root cause and a workaround if there is. > | My email is v-. > | > | Regards > | Allen Chen > | Microsoft Online Support > | > | Delighting our customers is our #1 priority. We welcome your comments and > | suggestions about how we can improve the support we provide to you. > Please > | feel free to let my manager know what you think of the level of service > | provided. You can send feedback directly to my manager at: > | . > | > | ================================================== > | Get notification to my posts through email? Please refer to > | > http://msdn.microsoft.com/subscripti...ult.aspx#notif > | ications. > | > | Note: The MSDN Managed Newsgroup support offering is for non-urgent > issues > | where an initial response from the community or a Microsoft Support > | Engineer within 1 business day is acceptable. Please note that each > follow > | up response may take approximately 2 business days as the support > | professional working with you may need further investigation to reach the > | most efficient resolution. The offering is not appropriate for situations > | that require urgent, real-time or phone-based interactions or complex > | project analysis and dump analysis issues. Issues of this nature are best > | handled working with a dedicated Microsoft Support Engineer by contacting > | Microsoft Customer Support Services (CSS) at > | http://msdn.microsoft.com/subscripti...t/default.aspx. > | ================================================== > | This posting is provided "AS IS" with no warranties, and confers no > rights. > | > | > | -------------------- > | | From: "SAL" <> |
|
|
|
|
|||
|
|||
| SAL |
|
|
|
| |
![]() |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Have sipgate MUNGED my netgear router? | Shane Carpenter | UK VOIP | 14 | 07-29-2006 05:04 PM |
| munged amail addy or not? | Big Bill | HTML | 3 | 12-29-2004 01:47 AM |
| munged email addresses | lisa goose | Computer Support | 20 | 08-23-2003 06:53 AM |
| MUNGED EMAIL | lisa goose | Computer Support | 4 | 08-20-2003 08:56 PM |
| Munged 'From:' header | Yolande | Computer Security | 4 | 08-09-2003 10:39 PM |
Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc..
SEO by vBSEO ©2010, Crawlability, Inc. |




