It is hard to tell from that error, other than an exception has
happened in your application.
You need to go into the web.config and change that value for
customErrors="Off" so that you can see what the error is. But you
probably should not leave it like that, but make sure that you are
handling your exceptions so that your source code is not being shown,
etc.
HTH.
Ben Miller
On Sun, 27 Feb 2005 20:06:29 -0000, girish_sahu2003
<[EMAIL PROTECTED]> wrote:
>
>
> Hi,
>
> Can someone tell me what's the cause of this error.
> -------------------------
> 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 <customErrors> tag within
> a "web.config" configuration file located in the root directory of the
> current web application. This <customErrors> tag should then have its
> "mode" attribute set to "Off".
>
> <!-- Web.Config Configuration File -->
>
> <configuration>
> <system.web>
> <customErrors mode="Off"/>
> </system.web>
> </configuration>
>
> 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 <customErrors> configuration tag to point to a custom
> error page URL.
>
> <!-- Web.Config Configuration File -->
>
> <configuration>
> <system.web>
> <customErrors mode="RemoteOnly"
> defaultRedirect="mycustompage.htm"/>
> </system.web>
> </configuration>
>
> ---------------------------
>
>
> Yahoo! Groups Links
>
>
>
>
>
--
Ben Miller
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/
<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/