Deploying a asp.net 2.0 web application
-
Hi, I want you to help me in deploying a asp.net 2.0 web application which makes use of sql database. Generally, the process that i follow is: I will generate a sql script of my databse, export the data into excell file. And, i will copy my project and create a virtual directory in the server. Then i will run the sql script in the sql query analyser of server and import the excell data sheet. This holds good for within the LAN. But, now my requirement is i want to pack database and my project into a single exe file. So, that when the client installs in his server, the databse connects automatically and the project works fine... Please help me...Its urjent.
-
Hi, I want you to help me in deploying a asp.net 2.0 web application which makes use of sql database. Generally, the process that i follow is: I will generate a sql script of my databse, export the data into excell file. And, i will copy my project and create a virtual directory in the server. Then i will run the sql script in the sql query analyser of server and import the excell data sheet. This holds good for within the LAN. But, now my requirement is i want to pack database and my project into a single exe file. So, that when the client installs in his server, the databse connects automatically and the project works fine... Please help me...Its urjent.
You can create the scripts for the database structure as well as forthe data In your app detect when it is the firs time use and ask the user to choose the server user and password, using that, connect to the server and execute the scripts, also save the server, user and password in webconfig for later use by your app
Alexei Rodriguez
-
You can create the scripts for the database structure as well as forthe data In your app detect when it is the firs time use and ask the user to choose the server user and password, using that, connect to the server and execute the scripts, also save the server, user and password in webconfig for later use by your app
Alexei Rodriguez
Can you be more clear.? I mean how to attach the created database scripts to web setup project.?