视觉工作室模块创建dotnetnuke的项目之间无法解释的差距

时间:2014-10-22 10:58:53

标签: html asp.net module dotnetnuke

我创建了一个到我的sql server的linqdatasource连接,我在listview中加载了我的数据。 现在对于那个列表视图,我在列表视图的顶部添加了另一个表格,如标题。(我也试过div或p)

现在的问题是,当我将此模块添加到我的网站时,列表视图和顶级项目之间存在差距,无论是桌面还是潜水或其他任何内容。

在视觉工作室内,它显示没有差距。这是我的代码:

enter image description here

<%@ Control Language="VB" ClassName="MyModules.ProductDetailsModule" Inherits="DotNetNuke.Entities.Modules.PortalModuleBase" %>
<%@ Import Namespace="CodingStaff.Modules.MenuBox.Licensing" %>

<script runat="server">
    Dim prodID As Integer
</script>

<%
    prodID = Convert.ToInt32(Request.QueryString("ProductID"))
%>

<style type="text/css">
    h1 {
        font-family: Lucida Grande;
        font-size: 15px;
    }

    td {
        font-family: Lucida Grande;
        font-size: 13px;
        color: #999999;
    }
</style>

<table style="width: 704px;">
    <tr style="width: 704px;">
        <td>
            <table>
                <tbody>
                    <tr bgcolor="#e7e7e5" height="35">
                        <td align="left" style="width: 704px;">
                            <h1 style="color: #666666;">Technical info</h1>
                        </td>
                    </tr>
                </tbody>
            </table>
        </td>
    </tr>
    <tr>
        <td>
            <asp:ListView ID="ListView1" runat="server" DataKeyNames="PRODUCTID" DataSourceID="LinqDataSource1">
                <ItemTemplate>
                    <tr>
                        <td runat="server" style="width:352px"><strong>Product Code:</strong></td>
                        <td style="width:352px"><strong>
                            <asp:Label ID="PRODUCTIDLabel" runat="server" Text='<%# Eval("PRODUCTID") %>' /></strong>
                        </td>
                    </tr>
                    <tr>
                        <td runat="server" style="width:352px"><strong>Name:</strong></td>
                        <td style="width:352px"><strong>
                                <asp:Label ID="PRODUCTNAMELabel" runat="server" Text='<%# Eval("PRODUCTNAME") %>' /></strong>
                        </td>
                    </tr>
                    <tr>
                        <td runat="server" style="width:352px"><strong>Description:</strong></td>
                        <td style="width:352px"><strong>
                            <asp:Label ID="PRODUCTDESCRIPTIONLabel" runat="server" Text='<%# Eval("PRODUCTDESCRIPTION") %>' /></strong></td>
                    </tr>
                </ItemTemplate>
                <LayoutTemplate>
                    <table runat="server" border="0" style="">
                        <tr runat="server" id="itemPlaceholderContainer">
                            <td runat="server" id="itemPlaceholder"></td>
                        </tr>
                    </table>
                    <div style="">
                    </div>
                </LayoutTemplate>
            </asp:ListView>
        </td>
    </tr>
</table>

<asp:LinqDataSource ID="LinqDataSource1" runat="server" ContextTypeName="ProductsModule.ProductsModuleDALDataContext" EntityTypeName="" TableName="PRODUCTs" Where="PRODUCTID==@prodID">
    <WhereParameters>
        <asp:QueryStringParameter Name="prodID" QueryStringField="ProductID" Type="Int32" />
    </WhereParameters>
</asp:LinqDataSource>

这里有一个类似的代码有相同的问题:

enter image description here

<%@ Control Language="VB" AutoEventWireup="false" CodeFile="View.ascx.vb" Inherits="DesktopModules_MyModules_ProductsModule_View" %>
<asp:LinqDataSource ID="LinqDataSourceProducts" runat="server" ContextTypeName="ProductsModule.ProductsModuleDALDataContext" EntityTypeName=""
     TableName="PRODUCTs" OrderBy="PRODUCTNAME" Select="new (PRODUCTID, PRODUCTNAME)">
</asp:LinqDataSource>

<style type="text/css">
    td   {
    font-family:Lucida Grande;
    color:#666666;
    font-size:15px;
    }
    table{
    margin-top: 10px;
    }
     A{
    text-decoration:none;
    }
    a:link{
    color:#666666;
    }
    a:visited{
    color:#666666;
    }
    a:hover{
    color:#666666;
    }
    a:focus{
    color:#666666;
    }
    a:active{
    color:#666666;
    }
</style>

    <asp:Table runat="server" style="width: 704px;" CellPadding="10" CellSpacing="0">
        <asp:TableRow bgcolor="#e7e7e5" height="45">
            <asp:TableCell align="left" style="width: 100%;" >
                <p1 style="color: #666666; font-size:inherit"><strong>Product list</strong></p1>
            </asp:TableCell>
        </asp:TableRow>
    </asp:Table>

<asp:ListView ID="ListView1" runat="server" DataSourceID="LinqDataSourceProducts" GroupItemCount="4" DataKeyNames="PRODUCTID">
    <AlternatingItemTemplate>
        <td runat="server" style="background-color: #ffffff;color: #284775;"  width="176">
            <asp:Image  ImageUrl="~/images/drop59.png" ID="Image1" runat="server" />
            <a href="http://localhost/dnn7/Commercial-vehicle-lubricants/Product-line/product-details?ProductID=<%# Eval("PRODUCTID") %>" target="_self">
                <asp:Label ID="PRODUCTNAMELabel" runat="server" Text='<%# Eval("PRODUCTNAME") %>' /></a>
            <br />
        </td>
    </AlternatingItemTemplate>
    <EditItemTemplate>
        <td runat="server" style="background-color: #FFCC66;color: #000080;">PRODUCTID:
            <asp:Label ID="PRODUCTIDLabel1" runat="server" Text='<%# Eval("PRODUCTID") %>' />
            <br />
            PRODUCTNAME:
            <asp:TextBox ID="PRODUCTNAMETextBox" runat="server" Text='<%# Bind("PRODUCTNAME") %>' />
            <br />
        </td>
    </EditItemTemplate>
    <EmptyDataTemplate>
        <table runat="server" style="background-color: #FFFFFF;border-collapse: collapse;border-color: #999999;border-style:none;border-width:1px;">
            <tr>
                <td>No data was returned.</td>
            </tr>
        </table>
    </EmptyDataTemplate>
    <EmptyItemTemplate>
<td runat="server" />
    </EmptyItemTemplate>
    <GroupTemplate>
        <tr id="itemPlaceholderContainer" runat="server">
            <td id="itemPlaceholder" runat="server"></td>
        </tr>
    </GroupTemplate>
    <InsertItemTemplate>
        <td runat="server" style="">PRODUCTID:
            <asp:TextBox ID="PRODUCTIDTextBox" runat="server" Text='<%# Bind("PRODUCTID") %>' />
            <br />PRODUCTNAME:
            <asp:TextBox ID="PRODUCTNAMETextBox" runat="server" Text='<%# Bind("PRODUCTNAME") %>' />
            <br />
        </td>
    </InsertItemTemplate>
    <ItemTemplate>
        <td runat="server" style="background-color: #ffffff;color: #333333;" width="176">
            <asp:Image ImageUrl="~/images/drop59.png" ID="Image1" runat="server" />
            <a href="http://localhost/dnn7/Commercial-vehicle-lubricants/Product-line/product-details?ProductID=<%# Eval("PRODUCTID")%>" target="_self">
                <asp:Label ID="PRODUCTNAMELabel" runat="server" Text='<%# Eval("PRODUCTNAME") %>' /></a>
            <br />
        </td>
    </ItemTemplate>
    <LayoutTemplate>
        <table runat="server">
            <tr runat="server">
                <td runat="server">
                    <table id="groupPlaceholderContainer" runat="server" border="0" style="background-color: #FFFFFF;border-collapse: collapse;font-family: Lucida Grande, Helvetica, sans-serif; font-size:15px; color:#999999;">
                        <tr id="groupPlaceholder" runat="server">
                        </tr>
                    </table>
                </td>
            </tr>
            <tr runat="server">
                <td runat="server" style="text-align: center;background-color: #FFCC66;font-family: Lucida Grande, Helvetica, sans-serif;color: #333333; font-size:15px;"></td>
            </tr>
        </table>
    </LayoutTemplate>
    <SelectedItemTemplate>
         <td runat="server" style="background-color: #FFCC66;font-weight: bold;color: #000080;">PRODUCTID:
            <asp:Label ID="PRODUCTIDLabel" runat="server" Text='<%# Eval("PRODUCTID") %>' />
            <br />PRODUCTNAME:
            <asp:Label ID="PRODUCTNAMELabel" runat="server" Text='<%# Eval("PRODUCTNAME") %>' />
            <br />
        </td>
    </SelectedItemTemplate>
</asp:ListView>

UPDATE !!!!!

我用f12看了一下chrome的网站,看看这个差距会发生什么。我注意到在每个表声明中都添加了一个空白。这是一个示例图像。橙色是产生的差距,也低于技术信息,再次存在差距。

enter image description here

1 个答案:

答案 0 :(得分:0)

我发现了这个问题。我在另一个页面的另一个模块内部填充顶部30px。而且它似乎与整个网站共享这些选项。因此,在表格声明存在的任何地方,它都会在顶部增加30px的差距。我通过使用table.aVariableName制作特定的30px填充来修复它,这样只能存储到特定的表中