تبليغاتX
یادگار دوست
همای اوج سعادت به دام ما افتد اگر تو را گذری بر مقام ما افتد
تا حالا دیدین کسی تو وبلاگش آگهی دعوت به همکاری بزنه؟!!


خوب اینم یه مدلشه، نگاه کنین:


بدینوسیله از کلیه دوستان و کسانی که به مهارتهای ذیل آشنایی داشته و علاقه مند به همکاری میباشند، دعوت به همکاری میشود.

1. علاقه مند به طراحی فضاهای داخلی و دکوراسیون

2. آشنایی به برنامه نویسی وب، cms ها و پرتالهای معروف

3. مسلط به برنامه نویسی C# Windows Application

کسانی که به هرکدام از موارد زیر و یا همه موارد آشنایی کافی دارند، لطفا به من اطلاع بدین.

در ضمن شرایط کاری خیلی ساده هست:

پروژه ای و outsource کار میکنیم. یعنی من کار رو میدم و شما میبرین تو خونه انجام میدین، بعد تو فازهای مختلف خروجیها رو تحویل میدین

در ضمن فرد مورد نظر بایستی ساکن تهران باشه.

کسانی که مایلند در اسرع وقت به من ایمیل بزنین: adehghan@gmail.com 


+ نوشته شده در  شنبه سوم مرداد 1388ساعت 10:35  توسط عباسعلی دهقان  | 

 

 


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>