テキストファイルから読み込んだすべての行の値を含むgridviewがあります。私がしたいのは、グリッドビュー上の選択した行を編集して削除することです。GridView(VB .Net)でテキストファイルの行を編集して削除する
'''''Read every row then show it on gridview'''''
' Declarations
Dim objStreamReader As New StreamReader(Server.MapPath("Announcement.txt"))
Dim arrText As New ArrayList
' Loop through the file and add each line to the ArrayList
Do While objStreamReader.Peek() >= 0
arrText.Add(objStreamReader.ReadLine)
Loop
' Close the reader
objStreamReader.Close()
' Bind the results to the GridView
GVAnnouncement.DataSource = arrText
GVAnnouncement.DataBind()
私は何をお願いするつもりですが、私が選択した行のリターンの指標を得るのですか、次のとおりです。背後にあるコードで
<asp:GridView ID="GVAnnouncement" runat="server"
AutoGenerateColumns="True" EmptyDataText="- No file saved -">
<Columns>
<asp:TemplateField HeaderText="No.">
<ItemTemplate>
<%# Container.DisplayIndex + 1%>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
:私はすでに、テキストファイルのすべての行を表示するためのコードを持っていますテキストボックスに値を入力し、それをテキストファイルに更新しますか?どうもありがとうございました。
は、このフォームまたはASPですか? – Arion
@Arion:これはASP .Netのためのものです。 –