what is this error

0 views
Skip to first unread message

mary

unread,
Jul 21, 2005, 1:59:12 AM7/21/05
to DotNetDe...@googlegroups.com
Server Error in '/Diamonds' 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>

Jonathan Dickinson

unread,
Jul 21, 2005, 7:56:29 AM7/21/05
to DotNetDe...@googlegroups.com
Its a ASP server side error, it means that there is a problem with the program that is running on the server, it has been badly written or something. The best thing to do is to contact the webmaster. Look other places on the website for the email address.
--
Thanks

Jonathan Dickinson
----------------------------
Phone: +27 15 276 5007
Cell: +27 73 559 4721
Email: jonathanc...@gmail.com

Maryam mirzakhah

unread,
Jul 22, 2005, 1:35:21 PM7/22/05
to DotNetDe...@googlegroups.com
can you explaine me more

Jonathan Dickinson

unread,
Jul 25, 2005, 1:25:43 AM7/25/05
to DotNetDe...@googlegroups.com
Is this a website that you are creating? Or one you are using? If it is one you are using there is nothing you can do, unless somebody has put his email on the website - in which case you email him and say there is a problem. If it is your own website fix it!

Maryam mirzakhah

unread,
Jul 25, 2005, 2:38:29 AM7/25/05
to DotNetDe...@googlegroups.com
my problem has been solved

Maryam mirzakhah

unread,
Jul 25, 2005, 2:40:16 AM7/25/05
to DotNetDe...@googlegroups.com
I change web.config to this and it solved:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <appSettings>
<add key="DB" value="server=sql.ouriran.com;uid=host371;pwd=passmailadmin;database=host371" />
    </appSettings>

    <system.web>

         <customErrors mode="Off"/>
<pages validateRequest="false" />
            <compilation debug="true"/>
        <globalization requestEncoding="utf-8" responseEncoding="utf-8" />

    </system.web>
</configuration>

Hal

unread,
Jul 25, 2005, 4:37:01 PM7/25/05
to DotNetDe...@googlegroups.com
I wouldn't recommend posting your password to a public newsgroup...
Just my opinion. :-)

THanks,

Hal

Reply all
Reply to author
Forward
0 new messages