zoukankan      html  css  js  c++  java
  • 随手记录修改某条记录时,不使用数据库控件而用datareader

    可能是很简单的,记录一下,以后自己好用

        protected void Page_Load(object sender, EventArgs e)
        
    {
            getSession.JuageSession();
    //自定义的一个检查登录状态的类
            if (!Page.IsPostBack)
            
    {
                
    int id =Convert.ToInt32(Request["id"]);
                
    this.ViewState["id"= id;
                
    string sqlexe = "select * from product where id = " + id;
                SQLDbDataReader dr 
    = userSql.db.ExecuteDataReader(sqlexe);
                
    if (dr.Read())
                
    {
                    
    this.title.Text = dr["title"].ToString();
                    
    this.content.Value = dr["content"].ToString();
                    DropBind(Convert.ToInt32(dr[
    "parent"]));
                    
    this.ViewState["smallimg"= dr["smallimg"];
                    
    this.ViewState["bigimg"= dr["bigimg"];
                    
    this.ViewState["id"= dr["id"];
                    
    this.audit.Checked = Convert.ToBoolean(dr["audit"]);
                    
    this.post.Text = dr["post"].ToString();
                    
    this.comment.Text = dr["comment"].ToString();
                }

                dr.Close();
                dr.Dispose();
                dr 
    = null;
                PageControlInt();

            }

        }
  • 相关阅读:
    node express 返回json object
    CodeIgniter 安装指导
    nodejs 使用express开发获取其他网站引用本站点js文件的参数
    nodejs express 学习
    microsoft webMatrix 使用 IISnode 进行node express 开发
    模板引擎jade学习
    模板引擎之jade 学习
    smarty学习——高级知识
    smarty学习——缓存
    smarty学习——编程知识
  • 原文地址:https://www.cnblogs.com/yeagen/p/1331190.html
Copyright © 2011-2022 走看看