View Single Post
ישן 23-09-06, 20:30   # 1
alex
חבר וותיק
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: הרצליה
הודעות: 1,000
שלח הודעה באמצעות MSN אל alex

alex לא מחובר  

[asp.net] בעיה לא חמורה אך דחופה

להלן השגיאה:

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>



להלן הקובץ , שכאמור מעודכן ומסדור לפי הדרישות של המערכת.

<configuration>

<appSettings>
<add key="Database1_Provider" value="Microsoft.Jet.OLEDB.4.0"/>
<add key="Database1_DataSource" value="data.mdb"/>
<add key="Database1_ConnectionTimeout" value="15"/>
<add key="Database1_CommandTimeout" value="30"/>
<add key="Database1_CursorLocation" value="3"/>
<add key="Database1_RuntimeUserName" value=""/>
<add key="Database1_RuntimePassword" value=""/>
</appSettings>

<system.web>
<compilation debug="true"/>

<authentication mode="Windows"/>
<customErrors mode="Off"/>

</system.web>
</configuration>

אני פשוט יוצא מכילי פה , ומאבד את השפיות שלי לאט , לאט. ניסתי לערוך ידנית, דרך תוכנה, דרך הIIS אבל זה פשוט מסרב לעבוד !!!!!!!!!!!!

Last edited by alex; 23-09-06 at 20:33..
  Reply With Quote