Uploading ASP.Net
hi there.. i have a project in asp.net and MSSql and i need to upload it in web..
my project works properly in my localhost but when i upload it, it gives me a parser error message.. my web host supports IIS, .Net and the Database. can you give me some advise to solve my problem..
and one more thing.. I use project menu in menu bar -> Copy from and i selected "only files that are needed to run the Application" i run it locally and it seem to work properly.. is there another way or a proper way to do that? and can you give me some link to help me in webDev in .Net..
[587 byte] By [
jul_dio] at [2007-11-19 1:55:45]

# 2 Re: Uploading ASP.Net
You only waited 6 hours for a reply. We're not all awake at the same time during the day, so you have to be a little more patient...
Regarding debugging your problem, what is the exact error you get? Have you enabled page debugging? This should tell you a bit more about the exact error and the cause of the problem.
As for the actual deployment, typical web applications reside in a specific folder on the filesystem. Each application should have it's own application root folder. Within that is a bin directory that contains all compiled DLLs, etc. Your pages / directories / etc will also be in the application root folder. Copying the contents of the entire application root directory to the final destination usually does the job.
Other tips regarding SQL - Create a connectionstring property in the web.config and reference this when you need to make a db connection. This ensures you can have database changes in one directory propagate correctly without recoding all pages. It also allows for the SQL connections to be pooled via ADO.NET.