コード例 #1
0
        public ActionResult SearchByID(FormCollection form)
        {
            string         referenceNo = Request.Form["id"];
            List <Booking> bookings    = bookingMgr.FindBookingByID(Convert.ToInt32(referenceNo));

            return(View("Index", bookings));
        }