开发者

I want to run a .net web application on local computer

I wanted to run a .net application on a laptop. I created the application(aspx pages and SQL database) on a computer that has VS 08 installed. Now i wan开发者_运维知识库ted to run this application on a laptop that does not have SQL sever 2005 installed.

As far as the aspx pages if i publish them to a zip drive copy it to my laptop and go into IIS and define a new virtual directory to point where my pages are that should work RIGHT??

Now for the database i don't know what i need to do

any ideas???


Publish the web app to a folder on the laptop and create an IIS Virtual directory pointing to that folder.

As for the DB, install an express version of SQL Server (http://www.microsoft.com/express/Database/) and point you web app at them.


Have you considered using SQL Server Compact Edition? This will allow you to move the db around with the application.


You need to install sql server on the client(laptop) so you can run the application properly


As far as the aspx pages if i publish them to a zip drive copy it to my laptop and go into IIS and define a new virtual directory to point where my pages are that should work RIGHT??

Yes this should work.

As for the database, you'll need to install it on the computer you are running IIS on and copy the schema and data over or (I would recommend this way) have your code connect to a server which has the database on it.


You need to install at a minimum SQL Server 2005 express edition. You may also need to change the connection settings for your application, which may be in your .config file(depending on how you did your conneciton in your application) and depending on whether the server instance and database name you choose are different from what you used on your development computer.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜