iT邦幫忙

0

如何用vb.net 寫 使text裡面的資料新增到ms sql

  • 分享至 

  • xImage

想將查詢內容存入ms sql,但不知道該從哪裡下手
https://ithelp.ithome.com.tw/upload/images/20200505/20126870V7fiwM0BBN.png
這是目前的Code
https://ithelp.ithome.com.tw/upload/images/20200505/201268703vHpPbqBdd.png
打算將搜尋的歷史存入ms sql

圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

0
player
iT邦大師 1 級 ‧ 2020-05-05 22:55:07
最佳解答

大概這樣

1.在GridView加上【編輯】的按鈕
<asp:GridView id="GridView1" runat="server" AutoGenerateEditButton="True"

2.SqlDataSource 加上 UpdateCommand 的SQL的Update命令字串
https://docs.microsoft.com/zh-tw/dotnet/api/system.web.ui.webcontrols.sqldatasource.updatecommand?view=netframework-4.8

不過這種的一次只能編輯一筆存一筆
如果你要多筆資料一次一起寫到SQL的話
應該是再弄個勾選欄位
然後另外做的按鈕在GridViwe外
另外接按鈕事件去處理

抱歉我找到範例是C#的, 它是勾選後, 按按鈕刪除, 我想你應該看得懂怎麼改吧?
https://dotblogs.com.tw/jasonchang/2012/05/04/71978
不過它把SQL操作包成它用的 class DBUtil 了
你要找 ADO.NET 操作 SQL的方式換掉

C#版的ADO.NET封裝
http://www.player.idv.tw/prog/index.php/ClassSQL.cs

我要發表回答

立即登入回答