在gridview 中,如果gridview 绑定数据是半角并且不含有空格的话,是不换行的,用样式word-break:break-all; word-wrap:break-word; 可以解决此问题。 <div style="word-break:break-all; word-wrap:break-word;" > <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="EmployeeID" DataSourceID="SqlDataSource1" > <Columns> . . . </Columns> </asp:GridView></div>