vote up 0 vote down star

I have a gridview whose datasource is an oracle database. I want to know how to be able to change column width (in the gridview) when it is being displayed in the web browser.

Thank you

flag

1 Answer

vote up 0 vote down

Hi zohair--

You can set the column directly with the GridView tag:

<asp:GridView ID="myGrid" runat="server">
  <Columns>
    <asp:BoundField DataField="myColumn" ControlStyle-Width="25%" />
  </Columns>
</asp:GridView>

You could also assign the column a CSS class, and then use CSS to set the column width.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.