Hello I have a Gridview that displays my 22 columns ffrom SQL Select * from CMDB statment. How can I format the Gridview so it can show all fields without going off the page.
Here is my Defauly.aspx
<asp:GridView ID="GridView1" runat="server">
</asp:GridView>
Here is my Default.aspx.vb
Protected Sub GridView1_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs) Handles GridView1.SelectedIndexChanged
End Sub
Here are my columns:
Hostname, Make, Model, OperatingSystem, IPAddress, Vlan, Location, Environment, HardwareSupportContact, Maintenance, Owner, Processor, RAM, Harddrive, Applications, Applications2, Applications3, Applications4, Applications5, Applications6, Applications7,
Applications8
Go to the complete details ...