Useful VI Websites

As much as i like VI, I must be honest; I am not going to remember all these funky commands.  I have gathered these links below  to help people out whenever they forget let’s the … Read more

Disable Sorting on One Field of A Gridview

Go to the Html Source Code and remove the SortExpression or simply set it to blank. Before <asp:BoundField DataField=”Name” HeaderText=”Name”  SortExpression=”Name”  temStyle-HorizontalAlign=”Center”  ItemStyle-Wrap = “false”> <ItemStyle HorizontalAlign=”Center” Wrap=”False”></ItemStyle> After <asp:BoundField DataField=”Name” HeaderText=”Name” ItemStyle-HorizontalAlign=”Center” ItemStyle-Wrap = “false”> <ItemStyle … Read more