无法更新位数据类型sql server网页

时间:2013-10-14 03:03:14

标签: sql-server asp.net-webpages

请帮助,我在使用asp.net webpages语法更新位数据类型时遇到问题。这是我的代码

var db = Database.Open("StarterSite");
var idAdmin = ""; // Here's the ID of the new Admin
var idAdmin2 = ""; // Here's The ID of the old Admin




if(!IsPost){
    if(!Request.QueryString["id"].IsEmpty() && Request.QueryString["id"].IsInt()) {
        diklatid = Request.QueryString["id"];
        var dbCommand = "SELECT * FROM diklat  WHERE ID_diklat = @0";
        var row = db.QuerySingle(dbCommand, diklatid);

        if(row != null) { 
            string rowidadmin = row.ID_Admin.ToString();  


         idAdmin2 = rowidadmin;  // Inserted the ID value of old admin to this variable 

   }
        else{
            Validation.AddFormError("No data choosen");

        }
    }
    else{
        Validation.AddFormError("No data choosen");

    }
}

if(IsPost){
   idAdmin = Request.Form["idAdmin"]; //The ID value of new admin comes from the Form

    if (idAdmin == idAdmin2){ 

   //Check if the new admin equals to old admin
   -------------------//do something------
        Response.Redirect("~/SuperAdmin/diklat"); 
        } 
        else
         {
        //-----------------------------The Main Problem------------------------  

       // If different it suppose to change "onDuty" variable of the new one to 1 (true) and the old one to 0 (false)

        var updateCommand1 = "UPDATE UserProfile  SET onDuty= 0 WHERE UserId=@0";

        db.Execute(updateCommand1, idAdmin2);

        var updateCommand2 = "UPDATE UserProfile  SET onDuty= 1 WHERE UserId=@0";
        db.Execute(updateCommand2, idAdmin);
        Response.Redirect("~/SuperAdmin/diklat"); 


        }

模块假设执行此操作:以位数据类型编辑Admin(值班或不值班)的状态。我遇到的情况是,一旦管理员更新到新的管理员,旧的比特数据类型的onDuty将不会更新为0(从1),但新的成功更新为1(从0)。对于长代码很抱歉,问题很简单,但我只是想确保这个问题不是来自我的代码中的任何其他地方。希望它足够清楚

注意:根本没有错误公告!页面仍然有效,只有数据库中的数据没有更新

1 个答案:

答案 0 :(得分:1)

发布表单时,idAdmin2的值是默认的空字符串。它没有任何其他设置。因此,只有那些没有UserId值的行才会在第一个UPDATE命令中更新(可能不是你想要的)。在idAdmin2部分中为if(IsPost)分配一个值,使其与您想要影响的行匹配。