我想按照标题中的说法编辑我的专栏。有很多关于它的链接,但所有包括后端代码
protected void Page_Load(object sender, EventArgs e)
但是,我正在将引导框架转换为ASP.net框架,而我的Page_Load
中还没有任何代码。
数据来自数据库表,在使用gridview之前,那里有一个SqlSource。
这是我的代码:
<asp:GridView runat="server" CssClass="table table-bordered table-
striped" AllowPaging="True" AllowSorting="True" DataSourceID="SqlDataSource2"
AutoGenerateColumns="False" DataKeyNames="ID" OnRowDataBound="OnRowDataBound"
OnRowEditing="OnRowEditing" OnRowCancelingEdit="OnRowCancelingEdit"
OnRowUpdating="OnRowUpdating" OnRowDeleting="OnRowDeleting" EmptyDataText="No records has been added.">
<columns>
<asp:BoundField DataField="ID" HeaderText="ID" InsertVisible="False" ReadOnly="True" SortExpression="ID" />
<asp:BoundField DataField="title" HeaderText="text1" SortExpression="title" />
<asp:BoundField DataField="text" HeaderText="text2" />
</columns>
</asp:GridView>
现在。我想编辑我的专栏,正如我之前所说,我该怎么办?我必须在Page_Load()
中添加一些代码吗?如果我想删除一行,我该怎么办?