Deploying Web Application
-
Hi, I tried publishing my website via the publish option when I right click my web app, it only created the PrecompiledWeb folder... And i dont know what it does, it just contained my files and a new dll file. What is this for?? Anyway, I also tried doing the Web application setup but there was an error. I just installed IIS so that my Setup.exe can run.. It says the installation is incomplete.. Can anyone help me on how to deploy or create a setup for Web Application? Thanks!
-
Hi, I tried publishing my website via the publish option when I right click my web app, it only created the PrecompiledWeb folder... And i dont know what it does, it just contained my files and a new dll file. What is this for?? Anyway, I also tried doing the Web application setup but there was an error. I just installed IIS so that my Setup.exe can run.. It says the installation is incomplete.. Can anyone help me on how to deploy or create a setup for Web Application? Thanks!
when we publish a website,it creates dll for all the layers and C# paghes.In UI layer it keeps the aspx pages that are linked with dlls.After publishing you need to do just deploy it at IIS.Create a virtual directory for it. if you want ot make a setup you can do all this by C#(ie creating virtual directory and setting the properties.
Cheers!! Brij
modified on Wednesday, November 12, 2008 12:22 AM
-
Hi, I tried publishing my website via the publish option when I right click my web app, it only created the PrecompiledWeb folder... And i dont know what it does, it just contained my files and a new dll file. What is this for?? Anyway, I also tried doing the Web application setup but there was an error. I just installed IIS so that my Setup.exe can run.. It says the installation is incomplete.. Can anyone help me on how to deploy or create a setup for Web Application? Thanks!
graced88 wrote:
it just contained my files and a new dll file. What is this for??
When you deploy you website with precompiled option, your .cs files will be compilled into dll's. ASPX files will have a reference to this DLL's. Are you not seeing any ASPX files inside that directory? Then probably you are doing something wrong. Check this[^]
Navaneeth How to use google | Ask smart questions
-
graced88 wrote:
it just contained my files and a new dll file. What is this for??
When you deploy you website with precompiled option, your .cs files will be compilled into dll's. ASPX files will have a reference to this DLL's. Are you not seeing any ASPX files inside that directory? Then probably you are doing something wrong. Check this[^]
Navaneeth How to use google | Ask smart questions
Hmm ok.. stupid question, how will i put it in my IIS?...:confused: My PrecompiledWeb folder has my aspx files and the bin folder which has the dll. I need the Web Setup Application for this, right? I would like to have a Setup.exe for this so that I can run my Web Application installed on other PCs.. But when I try to add a project output, the only selection is "Content Files".