Pages

Friday, December 10, 2010

Information of Junagadh जूनागढ / જુનાગઢ

The history of Junagadh chronologically presents the birth and genesis of this small city in the state of Gujarat. A city and municipality, Junagadh is located at the foothills of the sacred Girnar Hills. The city is presently the headquarters of the Junagadh district of Gujarat. 

The name Junagadh means Old Fort. Various famous rulers such as the Kshatrapas, Mauryans, Chudasamas, Guptas, Vilabhis, Gujarat Sultans and Babi Nawabs have reigned in this part of the world. The architecture and rich cultural heritage of Junagadh stands as the edifice of the political and religious influences of the various rulers who have ruled the region. 

Four major religions, Hinduism, Buddhism, Jainism and Islam, have left a substantial influence on Junagadh. However, a stronger influence of the rulers of Junagadh was felt on the architecture of the city. During the reign of Babi Nawabs, Junagadh was the capital of the Junagadh State. 

Among the two defensive structures, Uparkot in the west is one of the fortifications of Junagadh. Uparkot was a stronghold of Mauryans and Gupta Empire. This place is known to have survived 16 sieges in a span of 1000 years. This is courtesy to the strategic location which makes access to this place very difficult. Buddhist caves, Baba Pyara caves, Adi-Kadi Vav, Navghan Kuvo and Jami Masjid are the major sites here. The former residence of Ranakdevi was converted into the Jami Mosque by Muhammad Begada after his conquest of Junagadh in 1470. 

Delving into Junagadh history would reveal the presence of rulers who were great patrons of art and architecture. Massive beautification of Junagadh was done during the reign of Nawab Mahobat Khat II, who was one of the Babi Rulers. Under his patronage, many renowned edifices like Aina Mahal, Circle Chowk with clock tower and Dewan Chowk were built. The Maqbaras or the mausoleums of the royal family are also architectural extravaganzas of the city. Manoranjan Guest House, Bahauddin College, Mahobat Madresa are the other important buildings constructed during the Nawabi period. 

The rich culture and heritage of Junagadh is also preserved in the literature of the great poets and litterateurs like Narsinh Mehta. 

Thursday, December 9, 2010

Friendship Poem

FRIENDSHIP is not how u forget
but
How you forgive,
Not
How you listen
But
How you understand,
Not
What you see,
But
How you feel,
But Not
How you let it go
But
How you HOLD ON

Monday, November 29, 2010

BE THANKFUL

Be thankful that you don't already have everything you desire. If you did, what would there be to look forward to?
Be thankful when you don't know something, for it gives you the opportunity to learn.
Be thankful for the difficult times. During those times you grow.
Be thankful for your limitations, because they give you opportunities for improvement.
Be thankful for your mistakes. They will teach you valuable lessons.
Be thankful when you're tired and weary, because it means you've made a difference.
It's easy to be thankful for the good things.
A life of rich fulfillment comes to those who are also thankful for the setbacks.
Find a way to be thankful for your troubles, and they can become your blessings.

Thursday, November 18, 2010

Rohan Patel: Can You Do This

Rohan Patel: Can You Do This

Can You Do This

ગુજરાતી એટલે

 G :- ગજબ. 
U :- અલ્ટિમેટ. 
J :- જક્કાસ. 
A :- એકયુરેટ. 
R :- રાપ્ચિક. 
A :- એડવાન્સ. 
T :- ટકાટક. 
I :- ઈન્ટેલીજન્ટ.

Monday, November 15, 2010

Thoughts

Happiness is when what you think, what
you say, and what you do are in harmony.
Faith is not something to grasp; it is a state to grow into.
Faith is the function of the heart.
Prayer is not an old woman’s idle amusement.
Properly understood and applied, it is the most potent instrument of action.
Prayer is not asking.  It is a longing of the soul.

Sunday, November 14, 2010

Email Send in Asp.net

public  void sendMail(string to, string from, string subject, string body)
    {
        ///Smtp config
        SmtpClient client = new SmtpClient("smtp.gmail.com", 465);
        // Edit password and username
        client.Credentials = new NetworkCredential("emailid@gmail.com", "password");
        client.EnableSsl = true;
        ///mail details
        MailMessage msg = new MailMessage();
        try
        {
            msg.From = new MailAddress(from);
            msg.To.Add(to);
            // msg.SubjectEncoding = System.Text.Encoding.UTF8;
            msg.Subject = subject;
            //msg.CC.Add();
            msg.IsBodyHtml = true;
            msg.BodyEncoding = System.Text.Encoding.UTF8;
            msg.Body = body;
            msg.Priority = MailPriority.Normal;
           client.Send(msg);
        }
        catch (Exception exp)
        {
            ///This runs the backup plan
            SendMailAlt(to, from, subject, body);
        }
    }
    private static void SendMailAlt(string to, string from, string subject, string body)
    {
        System.Web.Mail.MailMessage Mail = new System.Web.Mail.MailMessage();
        Mail.Fields["http://schemas.microsoft.com/cdo/configuration/smtpserver"] = ("smtp.gmail.com");
        Mail.Fields["http://schemas.microsoft.com/cdo/configuration/sendusing"] = 2;
        Mail.Fields["http://schemas.microsoft.com/cdo/configuration/smtpserverport"] = "465";
        Mail.Fields["http://schemas.microsoft.com/cdo/configuration/smtpusessl"] = "true";
        Mail.Fields["http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"] = 1;
        // Edit username & password
        Mail.Fields["http://schemas.microsoft.com/cdo/configuration/sendusername"] = "emailid@gmail.com";
        Mail.Fields["http://schemas.microsoft.com/cdo/configuration/sendpassword"] = "password";
        Mail.To = to;
        Mail.From = from;
        Mail.Subject = subject;
        Mail.Body = body;
        Mail.BodyFormat = System.Web.Mail.MailFormat.Html;
        System.Web.Mail.SmtpMail.SmtpServer = "smtp.gmail.com";
        System.Web.Mail.SmtpMail.Send(Mail);
    }



protected void btnsend_Click(object sender, EventArgs e)
    {
        string fromEmail = "emailid@gmail.com";  // from email id
        string subject = txtbody.Text;
        sendMail(txttoemailaddress.Text, fromEmail.ToString(), subject.ToString(), txtmessage.Text);
    }


Saturday, November 13, 2010