I want to access my compiled application from server then it shows error i.e. :-
Server Error in '/' Application.
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.Details: To enable the details of this specific error message to be viewable on remote machines, please create a
|
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's
|
Please suggest me ..

Abhinav GolwalkarPosted Dec 19, 2013, 5:19 AM
As it is clearly visible that the custom error mode is on in your web.config. This is why you are not be able to see the complete error description from server.
As suggested just set the customErrors "Off" and check the page.
You will get the complete error description. and based on this you will be able to investigate and fix the issue.
There are several possibilities for the errors like Null object reference or any referenced dll not present on the server etc.