這篇文章主要介紹“asp.net mvc動(dòng)態(tài)編譯生成Controller的方法是什么”,在日常操作中,相信很多人在asp.net mvc動(dòng)態(tài)編譯生成Controller的方法是什么問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”asp.net mvc動(dòng)態(tài)編譯生成Controller的方法是什么”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
成都創(chuàng)新互聯(lián)服務(wù)項(xiàng)目包括岐山網(wǎng)站建設(shè)、岐山網(wǎng)站制作、岐山網(wǎng)頁制作以及岐山網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,岐山網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到岐山省份的部分城市,未來相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!做網(wǎng)站后臺管理系統(tǒng)的時(shí)候,有時(shí)我們需要根據(jù)用戶的錄入配置動(dòng)態(tài)生成一些頻道,這些頻道需要用到獨(dú)立的Controller,這時(shí)就需要用到運(yùn)行時(shí)動(dòng)態(tài)編譯了。代碼如下:
using System.Web.Mvc; using System.CodeDom.Compiler; using System.Text; using Microsoft.CSharp; namespace DynamicCompiler.Controllers { public class HomeController : Controller { // GET: Home public ContentResult Index() { return Content(@" 這個(gè)頁面是vs生成的
點(diǎn)擊動(dòng)態(tài)編譯生成TestController
訪問TestController
測試帶View的Action "); } public ContentResult Creat() { string cspath = Server.MapPath("~/TestController.cs"); var compiler = CompilerFromCsPath("TestController", cspath); //編譯 #region 輸出編譯信息 StringBuilder sb = new StringBuilder(); sb.Append("cs文件路徑:" + cspath); sb.Append("編譯信息:" + "
"); foreach (string output in compiler.Output) { sb.Append(output + "
"); } sb.Append("錯(cuò)誤信息:" + "
"); foreach (CompilerError error in compiler.Errors) { sb.Append(error.ErrorText + "
"); } #endregion return Content(sb.ToString()); } ////// 動(dòng)態(tài)編譯并執(zhí)行代碼 /// /// 代碼 /// 輸出dll的路徑 ///返回輸出內(nèi)容 private CompilerResults CompilerFromCsPath(string dllName, params string[] csPath) { string binpath = Server.MapPath("~/bin/"); CSharpCodeProvider complier = new CSharpCodeProvider(); //設(shè)置編譯參數(shù) CompilerParameters paras = new CompilerParameters(); //引入第三方dll paras.ReferencedAssemblies.Add("System.dll"); paras.ReferencedAssemblies.Add("System.linq.dll"); paras.ReferencedAssemblies.Add("System.Web.dll"); paras.ReferencedAssemblies.Add(binpath + "System.Web.Mvc.dll"); //是否內(nèi)存中生成輸出 paras.GenerateInMemory = false; //是否生成可執(zhí)行文件 paras.GenerateExecutable = false; paras.OutputAssembly = binpath + dllName + ".dll"; //編譯代碼 CompilerResults result = complier.CompileAssemblyFromFile(paras, csPath); return result; } } }
流程如下:
mvc啟動(dòng)的時(shí)候,只有HomeController,訪問TestController會(huì)提示404錯(cuò)誤
然后點(diǎn)擊動(dòng)態(tài)編譯TestController,生成dll到bin目錄。。再點(diǎn)擊訪問TestController的時(shí)候,就是可以訪問的狀態(tài)了。
這過程中,mvc應(yīng)用程序會(huì)自動(dòng)重啟的。。因?yàn)槲覀兊呐渲脙H僅是后臺使用,我覺得沒必要再去動(dòng)態(tài)加載dll,讓他自動(dòng)重啟就行了。。不知道這么想對不對。。請大手子賜教。。
代碼下載:dynamic-Controller_jb51.rar
到此,關(guān)于“asp.net mvc動(dòng)態(tài)編譯生成Controller的方法是什么”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!