anyone can help me solve this problem, i am using the web service to get the update method into the grid view row updating but i got error not sure how to solve it...please help me!!!

thanks in advance

this is my code...

protected void Page_Load(object sender, EventArgs e)   
    {   
        if (!IsPostBack)   
        {   
   
            BindNominal();   
        }   
   
   
    }  
 
protected void GV_Update_RowEditing1(object sender, GridViewEditEventArgs e)  
    {  
        GV_Update.EditIndex = e.NewEditIndex;  
        BindNominal();  
  
    }  
   protected void BindRollInfo()   
{   
        //this is the proxy u saying   
        WSRollInfo.WSRoll roll = new WWSRollInfo.WSRoll();   
        GV_Update.DataSource = roll.GetAllRoll();   
        GV_Update.DataBind();   
} protected void GV_Update_RowUpdating(object sender, GridViewUpdateEventArgs e,int Roll_ID, String Roll_Data, int Status) 
    { 
        WSRollInfo.WSRoll updateRolls = new WSRollInfo.WSRoll(); 
        GV_Update.DataSource = updateRolls.updateRoll(Roll_ID, Roll_Data, Status); 
        GV_Update.DataBind(); 
        BindNominal(); 
 
    }
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.