ASPX-> CS-> DLL ASP.NET project After deployment, the ASPX file is not compiled. This situation should be maintained until the user's first access page, which is converted into CS, and compiled into a DLL This visit is not very fast, but since then, all visitors will get ideal access speed.
So how do you have all ASPXs that have been compiled into a DLL after deployment? Through the above description, it is not difficult to think, as long as you access all the pages, this access has a simple method, which is the folder where the project is located, transform the physical path to the HTTP address of the web access, and use HttpRequest to access it again. That is, if you have permission control, you may have to work more).
After access, the corresponding file is generated in /Winnt/Microsoft .Net/framework/ version number / Temporary ASP.NET FILES / project name / random number / random number, where * .cs are class files generated by ASPX. (After the file is processed, deployment without ASPX files), *. DLL is a DLL file generated by ASPX, *. RES is the residual part of the Runat = Server remaining in the ASPX file.
Posted on 2004-08-16 14:09 Chen Sai Yuan Read (806) Comments (8) Edit Collection
Comments # RE: ASPX-> CS-> DLL After the file is processed, you can implement the deployment without ASPX files? What does it mean? Is it not necessary for the web folder? 2004-08-16 18:45 | Romantic eleven wolves # Re: aspx-> CS-> DLL Yes, compile CODEBEHIND CS and the auto-generated CS I mentioned above into DLL, and increase in WebConfig A HTTPHANDLERS festival can declare the resolution of a specific ASPX file 2004-08-17 10:07 | Chen Xiyuan # Re: aspx-> cs-> DLL The landlord is not like this http://www.url.com /web.dll?page=index 2004-09-16 21:29 | Ja # Re: aspx-> cs-> dll to ja: No, still http://www.url.com/web.aspx? Page = index is just this web.aspx is parsed by the specific DLL we define. This DLL is the 2004-09-17 10:07 | Chen Xiyuan # Re: aspx-> cs-> DLL, please ask Teacher Chen How to convert an ASPX.vb or aspx.cs file into a dynamic link library DLL file, I hope you can answer, thank you! 2004-11-25 12:28 | Beginner # RE: ASPX-> CS-> DLL CSC aspx.cs vbc aspx.vb 2004-11-25 12:30 | Chen Sai Yuan