在aspx页面中将GridView控件拖入后,如果不做任何的设置情况下,页面文件*.aspx的代码如下:
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="EmployeeID" DataSourceID="SqlDataSource1" EmptyDataText="无显示的记录">
在这种情况下运行程序后输出的HTML代码却会包含style="border-collapse:collapse;",如下所示:
<table cellspacing="0" rules="all" border="1" id="GridView1" style="border-collapse:collapse;">
但是如果你需要将 GridView 输出 HTML 代码时不包含 Style,可以增加以下的设置即可,同样也适合于输出GridView到文件。
GridView1.GridLines = GridLines.None
GridView1.CellSpacing=-1
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="EmployeeID" DataSourceID="SqlDataSource1" EmptyDataText="无显示的记录">
在这种情况下运行程序后输出的HTML代码却会包含style="border-collapse:collapse;",如下所示:
<table cellspacing="0" rules="all" border="1" id="GridView1" style="border-collapse:collapse;">
但是如果你需要将 GridView 输出 HTML 代码时不包含 Style,可以增加以下的设置即可,同样也适合于输出GridView到文件。
GridView1.GridLines = GridLines.None
GridView1.CellSpacing=-1