Hey Guys... I have a Gridview that is binding to a DataTable that I have stored in a session.
i have put this code:
In every single option I can think of.
Right after the databind()...
gvResults_*Every single drop down item*
And nothing can make the rows on the gvResults table to not wrap.
I have tried doing
And everytime it comes back as an index error.
The Gridview is inside an UpdatePanel... is that why i can't grab it?
i have put this code:
Code:
'sets all the columns to not Wrap
For x = 0 To gvResults.Columns.Count - 1
gvResults.Columns(x).ItemStyle.Wrap = False
Next x
In every single option I can think of.
Right after the databind()...
gvResults_*Every single drop down item*
And nothing can make the rows on the gvResults table to not wrap.
I have tried doing
Code:
For X = 0 to 10
...
And everytime it comes back as an index error.
The Gridview is inside an UpdatePanel... is that why i can't grab it?