public bool InsBook( string book_price, string book_supplierid, string book_imgPath)
{
book = new MBook();
book.Price = double.TryParse(book_price, out 0.00);
book.Supplier = book_supplierid;
book.ImgPath = book_imgPath;
return bd.InsBook(book);//调用添加书籍的方法
}