Last active
December 17, 2015 01:59
-
-
Save begedin/5532854 to your computer and use it in GitHub Desktop.
Typical ASP.NET GridVIew Control Creation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<asp:GridView | |
ID="gvMyGridID" runat="server" | |
DataSourceID="myDataSource" | |
AutoGenerateColumns="False" | |
GridLines="None" | |
AllowPaging="true" | |
CssClass="myGridClass" | |
PagerStyle-CssClass="myPagerClass" | |
AlternatingRowStyle-CssClass="myAltRowClass"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment