The local rendering is as follows:
The rendering sent to the server is as follows:
The image may be a bit big, please look at the image in a new window~Trouble
Browser: Firefox Version: 3.6.28
There are 2 differences here.
The first difference:
In the local rendering, except for the title row, the other rows do not have TD borders; but in the server rendering, some rows have borders and some do not.
Corresponding code:
<table id="bSortTable" width="2045" class="TableList"><tr id="tritem" style="background: #FFFFFF; border-bottom: 1px #cccccc solid;" onmouseover="selecty_sep(this)" onmouseout="selectz_sep(this)" runat="server"> <td> <asp:CheckBox ID="z" runat="server" onclick="AddID_sel(this)" /> <asp:HiddenField ID="rep_hid_ID" runat="server" Value='<%# Eval("OrderID") %>' /> <asp:HiddenField ID="rep_hid_Name" runat="server" Value='<%# Eval("OrderCode") %>' /> </td> <td align="center"> <a style=" color:Teal; font-weight:bold;" href="OrderView.aspx?orderid=<%# Eval("OrderID") %>"><%# Eval("OrderCode")%></a> </td> <td align="center"> <%# Eval("BeginStation")%> </td> <td align="center"> <%# Eval("ArriveStation")%> </td> <td align="center"> <%# DateTime.Parse(Eval("OrderDate").ToString()).ToShortDateString()%> </td> <td align="center"> <%# Eval("ShipperName")%> </td> <td align="center"> <%# Eval("ConsigneeName")%> </td> <td align="center"> <%# Eval("ConsignPhoneNum")%> </td> <td align="center"> <%# GetCargoDetail(Eval("OrderID").ToString())%> </td> <td align="center"> <%# Eval("Freight")%> </td> <td align="center"> <%# Eval("ReceiptCost")%> </td> <td align="center"> <%# Eval("DeliverCost")%> </td> <td align="center"> <%# Eval("Insurance")%> </td> <td align="center"> <%# Eval("OtherCost")%> </td> <td align="center"> <%# Eval("TotalCost")%> </td> <td align="center"> <%# Eval("PayMent")%> </td> <td align="center"> <%# Eval("CarrierName")%> </td> <td align="center"> <%#GetLoadingCarNum(Eval("OrderID").ToString(), Eval("LoadingCarNum").ToString(), Eval("State").ToString())%> <%--<a href="javascript:void(0)" onclick="event.cancelBubble=true;OpenOrderLoadingInfo(event,'<%# Eval("OrderID") %>');"" title="订单装车详情"> <%# Eval("LoadingCarNum")%></a>--%> </td> <td align="center"> <%#GetSendCarNum(Eval("OrderID").ToString(), Eval("SendCarNum").ToString(), Eval("State").ToString())%> <%--<a href="javascript:void(0)" onclick="event.cancelBubble=true;OpenOrderSendInfo(event,'<%# Eval("OrderID") %>');"" title="订单发车详情"> <%# Eval("SendCarNum")%></a>--%> </td> <td align="center"> <a href="javascript:void(0)" onclick="event.cancelBubble=true;OpenOrderState(event,'<%# Eval("OrderID") %>','<%# Eval("State") %>');" title="订单状态详情"> <%# GetDesByState(Eval("State").ToString())%></a> </td> <td align="center"> <asp:Literal ID="btn_prev" runat="server"></asp:Literal> <asp:Literal ID="btn_next" runat="server"></asp:Literal> <asp:Literal ID="btn_sign" runat="server"></asp:Literal> <asp:ImageButton ID="btn_signback" ToolTip="回单取消" ImageUrl="../../images/rep_signback.gif" CommandName="SignBack" CommandArgument='<%# Eval("OrderID") %>' runat="server" /> </td> </tr>
/* 列表型表格样式 */.TableList{ border:1px #cccccc solid; line-height:21px; font-size:9pt; border-collapse:collapse; padding:3px;}.TableList td{ padding:3px; height:26px;}/* 订单跟踪list专用 */.TableList td .tableDItim{ padding:3px; border:1px teal solid;}.TableList .TableHeader td,.TableList td.TableHeader{ height:30px !important; height:32px; background:#E7F1FA; border-bottom:1px #9cb269 solid; border-right:1px #9cb269 solid; font-weight:bold; text-align:center; color:#383838; padding:0px;}/* 订单跟踪list专用 */.TableList .TableHeader .tableDHeader{ height:30px !important; height:32px; background:#E7F1FA; border-bottom:0px #9cb269 solid; border-right:0px #9cb269 solid; font-weight:bold; text-align:center; color:#383838; padding:0px;}
The second difference:
In the local renderings, goods, packaging, The five columns of number of pieces, weight, and volume have table borders; but in the server rendering, they do not.
Related code:
/// <summary> /// 获取货物详情 /// </summary> /// <param name="orderid"></param> /// <returns></returns> public string GetCargoDetail(string orderid) { string des = "<table class=\"tableDItim\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">"; OrderBLL ob = new OrderBLL(); DataSet ds = ob.GetOrderDetailInfoByBID(orderid); string detail = ""; foreach (DataRow row in ds.Tables[0].Rows) { detail += "<tr>"; detail += "<td style=\"width: 105px;\" align=\"center\">"; detail += row["CargoName"].ToString(); detail += "</td>"; detail += "<td style=\"width: 65px;\" align=\"center\">"; detail += row["CargoPackMent"].ToString(); detail += "</td>"; detail += "<td style=\"width: 75px;\" align=\"center\">"; detail += row["PackagesNum"].ToString(); detail += "</td>"; detail += "<td style=\"width: 75px;\" align=\"center\">"; detail += row["Weight"].ToString(); detail += "</td>"; detail += "<td style=\"width: 75px;\" align=\"center\">"; detail += row["Volume"].ToString(); detail += "</td>"; detail += "</tr>"; } if (detail == "") { detail = "<tr><td style=\"width: 105px;\"></td><td style=\"width: 65px;\"></td><td style=\"width: 75px;\"></td><td style=\"width: 75px;\"></td><td style=\"width: 75px;\"></td></tr>"; } des += detail; des += "</table>"; return des; }
Another thing to say is that although using Firefox to open a project on the server is not ideal. But using IE8 to open the server has the same effect as using Firefox to open the local one.
Please ask a style expert to help me, thank you.
Reply to discussion (solution)
Is there any way to set bassurl? I encountered something similar once.
Look at the impact of which border-right

The function of HTML is to define the structure and content of a web page, and its purpose is to provide a standardized way to display information. 1) HTML organizes various parts of the web page through tags and attributes, such as titles and paragraphs. 2) It supports the separation of content and performance and improves maintenance efficiency. 3) HTML is extensible, allowing custom tags to enhance SEO.

The future trends of HTML are semantics and web components, the future trends of CSS are CSS-in-JS and CSSHoudini, and the future trends of JavaScript are WebAssembly and Serverless. 1. HTML semantics improve accessibility and SEO effects, and Web components improve development efficiency, but attention should be paid to browser compatibility. 2. CSS-in-JS enhances style management flexibility but may increase file size. CSSHoudini allows direct operation of CSS rendering. 3.WebAssembly optimizes browser application performance but has a steep learning curve, and Serverless simplifies development but requires optimization of cold start problems.

The roles of HTML, CSS and JavaScript in web development are: 1. HTML defines the web page structure, 2. CSS controls the web page style, and 3. JavaScript adds dynamic behavior. Together, they build the framework, aesthetics and interactivity of modern websites.

The future of HTML is full of infinite possibilities. 1) New features and standards will include more semantic tags and the popularity of WebComponents. 2) The web design trend will continue to develop towards responsive and accessible design. 3) Performance optimization will improve the user experience through responsive image loading and lazy loading technologies.

The roles of HTML, CSS and JavaScript in web development are: HTML is responsible for content structure, CSS is responsible for style, and JavaScript is responsible for dynamic behavior. 1. HTML defines the web page structure and content through tags to ensure semantics. 2. CSS controls the web page style through selectors and attributes to make it beautiful and easy to read. 3. JavaScript controls web page behavior through scripts to achieve dynamic and interactive functions.

HTMLisnotaprogramminglanguage;itisamarkuplanguage.1)HTMLstructuresandformatswebcontentusingtags.2)ItworkswithCSSforstylingandJavaScriptforinteractivity,enhancingwebdevelopment.

HTML is the cornerstone of building web page structure. 1. HTML defines the content structure and semantics, and uses, etc. tags. 2. Provide semantic markers, such as, etc., to improve SEO effect. 3. To realize user interaction through tags, pay attention to form verification. 4. Use advanced elements such as, combined with JavaScript to achieve dynamic effects. 5. Common errors include unclosed labels and unquoted attribute values, and verification tools are required. 6. Optimization strategies include reducing HTTP requests, compressing HTML, using semantic tags, etc.

HTML is a language used to build web pages, defining web page structure and content through tags and attributes. 1) HTML organizes document structure through tags, such as,. 2) The browser parses HTML to build the DOM and renders the web page. 3) New features of HTML5, such as, enhance multimedia functions. 4) Common errors include unclosed labels and unquoted attribute values. 5) Optimization suggestions include using semantic tags and reducing file size.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.