ASP.Net 2.0 web application Implementation on server
-
Hi frends I have developed my web application by using ASP.net 2.0 but not getting the idea to implement this on server ..... as we do in asp.net 1.1 create dll file and put it into bin folder keep all the .aspx files in folder and upload on to web server..... but in ASP.net 2.0 i am unable to create the DLL file and configure to IIS also... anybody can help....... Dinesh Sharma
-
Hi frends I have developed my web application by using ASP.net 2.0 but not getting the idea to implement this on server ..... as we do in asp.net 1.1 create dll file and put it into bin folder keep all the .aspx files in folder and upload on to web server..... but in ASP.net 2.0 i am unable to create the DLL file and configure to IIS also... anybody can help....... Dinesh Sharma
Web application contains folder App_Code, which contains files to be compiled (no need of dll, just put these files in this folder). Note that only files placed in this folder are compiled. If you need to reference dll, then add reference to it as in .NET 1.1, right click your project, add reference... it will create bin folder with referenced dll. Another idea is to create instalation package which do dirty work for you. Or check this [url] Visual Studio 2005 Web Deployment Projects [/url] -- modified at 12:15 Friday 23rd June, 2006
-
Hi frends I have developed my web application by using ASP.net 2.0 but not getting the idea to implement this on server ..... as we do in asp.net 1.1 create dll file and put it into bin folder keep all the .aspx files in folder and upload on to web server..... but in ASP.net 2.0 i am unable to create the DLL file and configure to IIS also... anybody can help....... Dinesh Sharma