Thanks Robert. Ok, so after further review I am able to insert and
remove records! But now comes the question of updating a record. Now,
again I've read the documentation, but when you have time please
review this;
protected void updateUser(object sender, EventArgs e)
{
MongoServer server = MongoServer.Create();
MongoDatabase db = server.GetDatabase("gac_corp_db");
var users = db.GetCollection("user_collection");
var id = ObjectId.Parse(txtuid.Text.ToString());
var query = Query.EQ("_id", id);
//users.Remove(query); works!
var update = Update.Set("name", txtname.Text.ToString());
//when I try to do this it says that "Cannot implicitly
convert MongoDB.Driver.SafeModeResult to MongoDB.Bson.BsonDocument"
BsonDocument updateComplete = users.Update(query, update);
}
Thanks for all of your help on this...