تبليغاتX
دانلود كتاب برق+جزوه برق+مقاله برق+پروژه
میکروپروسسور 8086 - سخت افزار و برنامه نویسی (قسمت اول)
· میکروپروسسور 8086 - سخت افزار و برنامه نویسی (قسمت دوم)
· مدار های الکتریکی 1 (قسمت اول)
· مدار های الکتریکی 1 (قسمت دوم)
· پردازش تصویر با استفاده از نرم افزار MatLab
· ماشین های الکتریکی 2 (واحد تهران جنوب)
· بررسی سیستم های قدرت 1 (واحد تهران جنوب)
· خلاصه مطالب ماشین های الکتریکی 2 (چاپمن)
· نمونه سوالات محاسبات عددی - دانشکده فنی واحد تهران جنوب
· معماری کامپیوتر (واحد تهران جنوب)
· مدار های الکتریکی 2 (واحد تهران جنوب) - قسمت اول
· مدار های الکتریکی 2 (واحد تهران جنوب) - قسمت دوم
· مجموعه نمونه سولات درسی (تخصصی - عمومی) - قسمت اول
· مجموعه نمونه سولات درسی (تخصصی - عمومی) - قسمت دوم

· مجموعه نمونه سولات درسی (تخصصی - عمومی) - قسمت سوم

pas:www.ir-micro.com

+ نوشته شده توسط احمد بانی ابیانه در پنجشنبه بیست و یکم خرداد 1388 و ساعت 16:27 |

وبلاگ شخصی احمد باني ابيانه
آرشیو موردی وبلاگ

 


Runtime 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>