Deploying ASP.NET database application to remote server

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

  1. #1

    Default Deploying ASP.NET database application to remote server

    Everything in the deployment works fine with the exception
    of the address of the database also deployed on the remote
    server.

    The string address is found under "oledbconnection" in
    the ".... .aspx.jsl" file. What should the string address
    look like on the remote computer?

    On my development machine the address is:

    Data Source=\"C:\\inetpub\\wwwroot\\WebApplication1
    \\DataFolder\\projects.mdb"\

    I am deploying my application to a web address:
    [url]http://www.cam-llc.com[/url]. I do not have direct access to
    the remote server.
    K Meyer Guest

  2. Similar Questions and Discussions

    1. Connecting to remote database on separate server
      I was wondering if any of you could explain how to connect to a database that sits on a different server than the site? Is it possible to connect...
    2. Moving SQL Server database from localhost to remote?
      Hello, I am doing my first project with MS SQL server 2000. Developing this with Access as a project has been fun.. but I am stumped now with how...
    3. Accessing data from an MS Access database on a remote web server
      Please forgive me if I have posted this to the wrong group! I have written a VB6 application that works fine. With that said, I would like to add...
    4. deploying from Windows 2003 staging server to remote production server
      What do you guys use to deploy from your staging servers to your remote production servers in team environments? Normally I FTP the files myself,...
    5. Deploying ASP.NET application + database
      Hi, I have ASP.NET application that includes a database. How do I transfer all this to another computer. Do I just copy application's folder and...
  3. #2

    Default Re: Deploying ASP.NET database application to remote server

    You're best (and maybe only) bet is to contact the host and double check,
    but most servers use the D drive. Try the exact same string but specify the
    D drive.

    Now the hard part. If you're updating the database you'll need proper
    permissions set on the folder the database is being put in. The host will
    have to do that for you.

    Justin


    "K Meyer" <kmeyer@cam-llc.com> wrote in message
    news:003301c34adc$73731bd0$a101280a@phx.gbl...
    > Everything in the deployment works fine with the exception
    > of the address of the database also deployed on the remote
    > server.
    >
    > The string address is found under "oledbconnection" in
    > the ".... .aspx.jsl" file. What should the string address
    > look like on the remote computer?
    >
    > On my development machine the address is:
    >
    > Data Source=\"C:\\inetpub\\wwwroot\\WebApplication1
    > \\DataFolder\\projects.mdb"\
    >
    > I am deploying my application to a web address:
    > [url]http://www.cam-llc.com[/url]. I do not have direct access to
    > the remote server.

    S. Justin Gengo 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