• پایان فعالیت بخشهای انجمن: امکان ایجاد موضوع یا نوشته جدید برای عموم کاربران غیرفعال شده است

Error عجیب

Fawks

کاربر تازه وارد
تاریخ عضویت
4 دسامبر 2006
نوشته‌ها
10
لایک‌ها
0
سلام
لطفا گه می دونید هین یرور ماله چی هست کمک کنید.


کد:
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>
 

H_R

مدیر بازنشسته
تاریخ عضویت
30 مارس 2005
نوشته‌ها
3,298
لایک‌ها
17
سن
42
محل سکونت
North Pole
به نظر میاد که برنامت توی یه لوپ گیر میکنه ، یا هنگام ارتباط با خارج (مثلا بانک اطلاعاتی ) دچار مشکل میشه ، اما اینجوری بیشتر از این نمیتونم کمکت کنم ، همونطور که اونجا نوشته
<customErrors mode="Off"/>

رو توی وب کانفیگت بذار تا ارورت معلوم بشه !
 

mehdivk

Registered User
تاریخ عضویت
5 آپریل 2006
نوشته‌ها
319
لایک‌ها
0
سلام دوست عزیز . این خطائی که مشاهده می کنی که میگه برو Custom Errors رو Off کن تا ببینی متن خطا چیه . اگه رفتی این کار را کردی و باز هم این خطا بر روی تمامی صفحات وب سايـت شما می آید و حتی میزنی mysite.com/nopage.aspx که این صفحه nopage.aspx اصلا رو وب سايت نیست و به جای خطای 404 باز هم همین خطا می آید دلیلش این است که یوزر ASP.net به دایرکتوری شما هیچ دسترسی ندارد . به ادمین بگو که مجوز به یوزر ASP.net بده تا مشکلش حل بشه .
 
بالا