0

I followed steps given by @YashSaraiya in my this post: ASP.Net Web Application deployment steps

However, after following those steps in inetmgr when I right-clicked on my Application -> Manage Application -> Browse, I got the following screen:

enter image description here

I believe, I will have to change some properties in web.config file. But I don't know what changes I will have to make (except for the connection string).

Can anyone help me know What changes I need to make to successfully deploy my application?

Edit 2: After properly installing ASP.Net in IIS and adding required roles, I got the following error screen:

enter image description here

1
  • On default IIS installation, such sections are strictly locked down in applicationHost.config. Unless you follow Microsoft's documentation to unlock those sections, such error messages are expected. That's why I hate those blog posts which do not make it very clear to their readers. Commented Dec 25, 2015 at 2:39

1 Answer 1

0

Actually the issue seems to be in your handlers sections where you tried to override values but that is not allowed by the parent configuration file.

When you observe the ConfigError message, that it was explained to you ;)

EDIT The new issue explain That your application pool is in integrated mode and use as it dors handlers for its mode but it has found managerpipelinehandler That is not for its mode. Just remove it from the list and retry to browsethe application.

Sign up to request clarification or add additional context in comments.

7 Comments

Under which tag do I look for changes in my web.config file?
First you have to determine if by removing the overriden section it works. In your case it seems that is <handlers> section which is the cause of issue
Does IE7 support "ChartImageHandler" ?
That isn't related to IE or whatever browser. If one dosn't support ChartImageHabdler is only IIS according to its configuration. Handler doesn't take in charge by browser only by the server. What Is your idea behind this question ?
I was of the view that maybe ChartImageHandler is not supported in IE7... Also, I found out that ASP.Net is not completely installed in IIS... This might be causing Errors.. I am now installing ASP.NET on IIS... Let's see if that makes my application work fine
|

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.