ASP.NET project deployment

Ask a Question related to ASP.NET Web Services, Design and Development.

  1. #1

    Default ASP.NET project deployment

    Hi,
    My issue is the same as posted by someone else here, and is unanswered.
    I urgently need help. I am deploying an asp.net application, and the issue
    is that I need to create the installer such that when my client runs it, he
    can make the virtual directory at whichever location he wants. In general,
    when the installation wizard is run, the VD is created by the given name in
    inetpub > wwwroot. But supposedly I want it to be there at the same place
    where my user wants, say C:\Program files. How do I create such a setup
    project ?
    Thanks for any ideas.


    Steve Guest

  2. Similar Questions and Discussions

    1. Deployment
      What's the best way in ASP .Net to deploy an app from a development machine to a production machine? Also, do all files (.vbproj, etc) need to be...
    2. Deployment Q
      If you have an ASPX app which calls a WebSvc do you need to deploy the WebReference folder or not? bin\foo.dll foo.aspx webREference? needed or...
    3. Deployment Project
      Hi, I need to make deployemnt project for my Web service in Visual Studio .NET. But I do not know how I can set custom DNS name for my web...
    4. Large PHP Project... Need Project Manager
      Hey, I've got a nice CMS (in quite stable 2.0 form) that I need a Project Manager who can just deal with some bugs/answer questions for the next...
    5. Web App Deployment
      I ran into this problem, and tried everything that everyone suggested. After carefully debugging the installer with a series of message boxes, I...
  3. #2

    Default Re: ASP.NET project deployment

    I did it, you need to create a setup deployment project, not a Web setup
    project.
    So they are prompt for the installation folder....

    Then use a custom actions during the install and uninstall events, to create
    and delete the Virtual Directory.
    You will need to pass TARGETDIR to your custom actions...if you want to
    know where they are installing the application to, so the Virtual Directory
    is pointing to TARGETDIR, etc...etc..

    Helene

    "Steve" <anonymous@discussions.com> wrote in message
    news:eh5HoGJSEHA.1216@TK2MSFTNGP10.phx.gbl...
    > Hi,
    > My issue is the same as posted by someone else here, and is unanswered.
    > I urgently need help. I am deploying an asp.net application, and the issue
    > is that I need to create the installer such that when my client runs it,
    he
    > can make the virtual directory at whichever location he wants. In general,
    > when the installation wizard is run, the VD is created by the given name
    in
    > inetpub > wwwroot. But supposedly I want it to be there at the same place
    > where my user wants, say C:\Program files. How do I create such a setup
    > project ?
    > Thanks for any ideas.
    >
    >

    Helene Day Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139