ايران ويج

نسخه‌ی کامل: مشکل دارم با مسترپیج
شما در حال مشاهده‌ی نسخه‌ی متنی این صفحه می‌باشید. مشاهده‌ی نسخه‌ی کامل با قالب بندی مناسب.
سلام به اساتید گل
دوستان من 1مستر پیج به پروژم اضافه کردم و با تغییر در صفحاتم با مستر پیج ست کردم الان که میخوام اجرا کنم ارور میده میخواستم بدونم ایا باید در فایل کنفیگ هم تغییر بدم؟
کد:
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>
دوست عزيز custom error رو خاموش کن که ارور رو بشه فهميد.

(۲۸-مرداد-۱۳۹۰, ۰۱:۱۸:۵۷)PouriaAmid نوشته است: [ -> ]دوست عزيز custom error رو خاموش کن که ارور رو بشه فهميد.
چطوری و از کجا باید خاموش کنم ؟
To make errors viewable on a remote computer

1.

On the Web server, locate the web.config file in the root directory of the current Web application.
2.

Locate the customErrors mode attribute in the file.

<configuration>
<system.web>
<customErrors mode="RemoteOnly"/>
</system.web>
</configuration>

3.

Change the customErrors mode attribute from "RemoteOnly" to "Off", and then save the file.
4.

Error details can now be viewed on any MSS computer through the MSSLogToText utility.