تبليغاتX
آريانا

آريانا

دستنوشته ها-دلتنگيها-دوست داشتنيها-یاد خوب گذشته ها

MUSIC: Aznavour Charles

She
may be the face I can't forget
a trace of pleasure I regret
may be my treasure or the price I have to pay
she may be the song that Solomon sings
may be the chill that autumn brings
my be a hounded tearful things
within the measure of the day.
She
may be the beauty or the beast
may be the famine or the feast
may turn each day into heaven or a hell
she may be the mirror of my dream
a smile reflected in a stream
she may not be what she may seem
inside as shell
she who always seems so happy 'n proud
who's eyes can be so private and so proud
no one's allowed to see them when they cry
she may be the love that can and hope to last
may come to me from shadows of the past
that I remember till day I die
She
may be the reason I survive
the why and where for I'm alive
the one I'll care for through the rough and rainy years
me I'll take her laughter and her tears
and make them all my souvenirs
for where she goes I got to be
the meaning of my life is
she, she, she

 

+ نوشته شده در  یکشنبه چهاردهم خرداد 1385ساعت 16:52  توسط آریانا   | 

 


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>