zoukankan      html  css  js  c++  java
  • 把RichTextBox的内容保存到数据库

    保存到数据库的内容:
    byte[] b=System.Text.Encoding.Default.GetBytes(this.richTextBox1.Rtf);
    读取:
    SqlConnection con=new SqlConnection("...");
    string str="select 内容 from 数据库 where ...";//确保只返回一行
    SqlCommand comm=new SqlCommand(str,con);
    if (con.State==ConnectionState.Closed)
    con.Open();
    byte[] b=(byte[])comm.ExecuteScalar();
    MemoryStream stream=new MemoryStream(b,true);
    stream.Write(b,0,b.Length);
    this.richTextBox1.Clear();
    string s=System.Text.Encoding.Default.GetString(b,0,b.Length);
    this.richTextBox1.Rtf=@s;
    stream.Close();

  • 相关阅读:
    程序员学习参考网站
    博客
    window对象
    事件触发顺序
    element对象
    正则表达式
    Date对象
    Number对象
    Math对象
    Binary Tree Maximum Path Sum
  • 原文地址:https://www.cnblogs.com/anakin/p/2334666.html
Copyright © 2011-2022 走看看