0

SQLクエリが実行され、データがテーブルに入れられた後、asp.netテーブルにグリッド線を表示しようとしています。グリッド線が表示されるかどうかを確認するために、デフォルトのタイトル行を設定しようとしましたが、表示されませんでした。

ここに私のテーブルマークアップがあります:

    <asp:Table ID="Table1" runat="server" ForeColor="Black" GridLines="Both" Height="330px" Width="950px">
    <asp:TableRow runat="server" BackColor="White" BorderColor="White" BorderStyle="Solid" BorderWidth="5px" Font-Bold="True" Font-Size="X-Small" ForeColor="#993399" HorizontalAlign="Center" VerticalAlign="Top">
        <asp:TableCell runat="server">Customer ID</asp:TableCell>
        <asp:TableCell runat="server">Business Name</asp:TableCell>
        <asp:TableCell runat="server">City</asp:TableCell>
        <asp:TableCell runat="server">State</asp:TableCell>
        <asp:TableCell runat="server">Phone</asp:TableCell>
        <asp:TableCell runat="server">Email</asp:TableCell>
        <asp:TableCell runat="server">Registered</asp:TableCell>
        <asp:TableCell runat="server">Approved</asp:TableCell>
        <asp:TableCell runat="server">Last Contacted</asp:TableCell>
        <asp:TableCell runat="server">Logger</asp:TableCell>
        <asp:TableCell runat="server">Responded</asp:TableCell>
    </asp:TableRow>

では、asp.net テーブルにグリッド線を表示するにはどうすればよいですか?

4

2 に答える 2

2

BorderColor プロパティはそれらを可視にする必要があります。背景が白なので、BorderColor を Black に設定してみてください。

于 2013-07-09T15:11:43.640 に答える