In my website I am using sql server database. what are files need to upload for sql server database? Thanks.
If your question matter deploying an app to shared hosting environment then you don't need to upload anything. Rather you should generate SQL code for creating the tables and objects (SP, Views, Triggers etc.) and inserting the data into the new database. Some hosting companies allow you to use attached SQL Express database and therefore if you work with express you can simply upload entire "App_Data" directory including the database files as well.
Check this article http://weblogs.asp.net/scottgu/arch...-and-execute-it-to-deploy-a-sql-database.aspx 1. Generate the SQL scripts using the "Database Publishing Wizard" 2. Upload the generated SQl file to your webhost 3. Upload another file "RunSQL.aspx" which you will find in the above link ... Make sure you change the connection info and the name of the SQl file that you uploaded 4. Using the webbrowser navigate to "RunSQL.aspx"