问题描述
<%@PageLanguage="VB"AutoEventWireup="false"CodeFile="Default.aspx.vb"Inherits="_Default"%><!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><headrunat="server"><title>无标题页</title></head><body><formid="form1"runat="server"><div><asp:GridViewID="GridView1"runat="server"AllowPaging="True"AllowSorting="True"AutoGenerateColumns="False"CellPadding="4"DataKeyNames="ID"DataSourceID="AccessDataSource1"ForeColor="#333333"GridLines="None"PageSize="5"><FooterStyleBackColor="#5D7B9D"Font-Bold="True"ForeColor="White"/><Columns><asp:BoundFieldDataField="ID"HeaderText="编号"InsertVisible="False"ReadOnly="True"SortExpression="ID"/><asp:BoundFieldDataField="content_title"HeaderText="文章标题"SortExpression="content_title"/><asp:BoundFieldDataField="content_name"HeaderText="发表人"NullDisplayText="没有东西"SortExpression="content_name"/><asp:BoundFieldDataField="content_time"HeaderText="发表时间"SortExpression="content_time"/><asp:CommandFieldShowDeleteButton="True"HeaderText="删除"/><asp:CommandFieldShowEditButton="True"HeaderText="编辑"/></Columns><RowStyleBackColor="#F7F6F3"ForeColor="#333333"/><EditRowStyleBackColor="#999999"/><SelectedRowStyleBackColor="#E2DED6"Font-Bold="True"ForeColor="#333333"/><PagerStyleBackColor="#284775"ForeColor="White"HorizontalAlign="Center"/><HeaderStyleBackColor="#5D7B9D"Font-Bold="True"ForeColor="White"/><AlternatingRowStyleBackColor="White"ForeColor="#284775"/><EmptyDataTemplate>没有数据</EmptyDataTemplate></asp:GridView><asp:AccessDataSourceID="AccessDataSource1"runat="server"DataFile="~/App_Data/textmessage.mdb"SelectCommand="SELECT[ID],[content_title],[content_name],[content_time]FROM[mecontent]ORDERBY[ID]"DeleteCommand="DELETEFROMmecontentWHEREID=@id"UpdateCommand="UPDATEmecontentSETcontent_title=content_titleWHEREID=@id"></asp:AccessDataSource></div></form></body></html>这是我用VS2005自带生成的...不过更新那里出了问题..UPDATEmecontentSETcontent_title=content_titleWHEREID=@id"要怎么样才可以把content_title这个值更新..新手..请多多帮助
解决方案
解决方案二:
UpdateCommand="UPDATEmecontentSETcontent_title=@content_titleWHEREID=@id"我将UPDATECOMMAND.改成这样..也不成..
解决方案三:
有人来回答一下这个问题吗?
解决方案四:
在MSDN中搜索一下gridview,里面有好多的实例,建议不要这样写,删除修改操作在gridview事件中写
解决方案五:
你执行更新之后commit了么