开发者

asp.net project publish on iis error on brow page

开发者 https://www.devze.com 2023-03-09 22:56 出处:网络
i publish my ASP.NET project as. Build / publish. choice of publish is file system and directory is IIS/wwwroot

i publish my ASP.NET project as. Build / publish. choice of publish is file system and directory is

IIS/wwwroot

Using asp.net and iis7.

When I want browse page from browser it show error with web-config file. You can see it on my page

http://isprojekty.fri.uniza.sk/MainForm.aspx

Can you help me where is problem ?

开发者_Go百科thx.


If you can remotely access the server where it is deployed, you could try accessing your site from there, and then you can see the error, if you have customErrors="remoteOnly". Otherwise, you will need to update your web.config to allow you to see the error message (but put it back again right away, because everyone else will be able to see it also).

<customErrors mode="Off"/> 

is what you need to change it to.

0

精彩评论

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