| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | 
							- using M55128_rec.Business.TK;
 
- using M55128_rec.Models.ViewModels.GallerMangerModel;
 
- using M55128_rec.Models.ViewModels.TrendChartModel;
 
- using System;
 
- using System.Collections.Generic;
 
- using System.Linq;
 
- using System.Threading.Tasks;
 
- using System.Web;
 
- using System.Web.Mvc;
 
- namespace M55128_rec.Controllers
 
- {
 
-     public class PartialController : Controller
 
-     {
 
-         
 
-         
 
-         
 
-         
 
-         
 
-         public ActionResult _footer()
 
-         {
 
-             string activeName = "";
 
-             return PartialView("_footer", activeName);
 
-         }
 
-         
 
-         
 
-         
 
-         
 
-         
 
-         public ActionResult header2()
 
-         {
 
-             string title = "";
 
-             return PartialView("header2", title);
 
-         }
 
-         
 
-         
 
-         
 
-         
 
-         
 
-         public ActionResult _header1()
 
-         {
 
-             string src = "";
 
-             return PartialView("_header1", src);
 
-         }
 
-         
 
-         
 
-         
 
-         
 
-         
 
-         
 
-         
 
-         [Route("zs/{t?}/{n?}/{r?}.html")]
 
-         public ActionResult Detail(string t, string n,string r)
 
-         {
 
-             return View("_detail", Tuple.Create(t,n,r));
 
-         }
 
-     }
 
- }
 
 
  |