1. 首页
  2. 课程学习
  3. 嵌入式
  4. 将RichTextBox的内容直接写入数据库

将RichTextBox的内容直接写入数据库

上传者: 2020-12-17 10:04:36上传 PDF文件 19.76KB 热度 33次
将RichTextBox的内容直接写入数据库: private void button1_Click(object sender, EventArgs e) { System.IO.MemoryStream mstream = new System.IO.MemoryStream(); this.richTextBox1.SaveFile(mstream, RichTextBoxStreamType.RichText); //将流转换成数组 byte[] bWrite = mstream.ToArray(); //将数组写入数据库 System.Data.Sql
用户评论