Prakash Kumar Jha
Prakash Kumar Jha

Reputation: 232

deployment issue in asp.net

i'm working on asp.net web application project.Situation is that i want to deploy my project on hosting site but when i try to deploy using vs2010 it get me error saying access denied error 550.

i want to know can i deploy on ftp server using package.

actually when i unzip and copying all the files of package on server using file upload of host server it done but when i run the site it show runtime error.u can see that error on

http://prakash.somee.com/

Upvotes: 2

Views: 51

Answers (1)

rick schott
rick schott

Reputation: 20617

Change your customErrors as your screen shot is telling you, so you can see what the real error is:

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>

Upvotes: 1

Related Questions