其中 BookNameText 等在Page_Load 时赋了值
--问题可能在这,提交先走pageload再走事件处理程序
  TextBox被重新赋值了
  所以要在pageload里面
  if (!IsPostBack)
  {
   //给TextBox赋值
   ...
   }