tags:

views:

20

answers:

1

Hello,

I have created one windows application in .net 2.0 and it uses SQL database in back end.

I want to create a setup file for this application so that I can install it and run it on any machine which does not have either .NET framework or SQL Server.

Please give me some useful link for this.

+1  A: 

http://www.google.com/search?q=visual+studio+web+setup+project+tutorial

The SQL Server part is going to be the tricky part. You're not going to be able to package SQL Server with your project. Maybe SQL Lite? I haven't used it, but adjust the above search accordingly and see what you can find.

David