public ActionResult Edit(string id)
{
ViewData["MenuSelect"] = selectParentName();
List<Hashtable> list = new List<Hashtable>();
Hashtable model = new Hashtable();
try
{
BS_BookInfoDAO dao = new BS_BookInfoDAO();
list = dao.selectByKey(id);
if (list != null && list.Count > 0)
{
model= list.ElementAt(0);
}
}
catch (Exception e)
{