Menu

mujhe dost ban ke dagha na de | مجھے دوست بن کے دغا نہ دے

A beautiful ghazal written by Shakeel Badayuni


میرے ہم نفس میرے ہم نوا مجھے دوست بن کے دغا نہ دے 
میں ہوں درد عشق سے جاں بہ لب مجھے زندگی کی دعا نہ دے 

میرے داغ دل سے ہے روشنی اسی روشنی سے ہے زندگی 
مجھے ڈر ہے اے مرے چارہ گر یہ چراغ تو ہی بجھا نہ دے 

مجھے چھوڑ دے مرے حال پر ترا کیا بھروسہ ہے چارہ گر 
یہ تری نوازش مختصر مرا درد اور بڑھا نہ دے 

میرا عزم اتنا بلند ہے کہ پرائے شعلوں کا ڈر نہیں 
مجھے خوف آتش گل سے ہے یہ کہیں چمن کو جلا نہ دے 

وہ اٹھے ہیں لے کے خم و سبو ارے او شکیلؔ کہاں ہے تو 
ترا جام لینے کو بزم میں کوئی اور ہاتھ بڑھا نہ دے

===============================================
Mere hum-nafass mere hum-nawaa, mujhe dost ban ke dagha na de,
Main hoon dard-e-ishq se jaan ba-lab mujhe zindagi ki dua na de, 

Main gham-e-jahan se nidhaal hoon ke saraapa huzn-o-malaalhoon,
Jo likhe hain mere naseeb main, woh alam kisi ko khuda na de, 

Na yeh zindagi meri zindagi, na yeh dastaan meri daastan,
Main khayal o veham se door hoon, Mujhe aj koi sadaa na de, 

Mere ghar se door hain raahaten, mujhe dhoondti hain museebten,
Mujhe khauf yeh ke mera pata koi gardashon ko bataa na de, 

Mujhe chorr de mere haal pr, tera kya bharosa ae chaaragar,
Yeh teri nawaazish-e-mukhtasar, mera dard aur barrhaa na de, 

Mera azam itna buland hai ke paraaye sholon ka ddar nahin,
Mujhe khauf aatish-e-gul se hai kahin yeh chaman ko jalaa na de, 

Dar-e-yaar pe barri dhoom hai, wohi aashiqon ka hujoom hai,
Abhi neend aani hai husn ko, koi shor kar ke jagaa na de, 

Mere daagh-e-dil se hai roshni, yehi roshni meri zindagi,
Mujhe dar hai ae mere chaaragar, yeh chiraagh tu hi bhujaa na de, 

Woh uthe hain le ke khum-o-subuu, aray ae shakeel kahan hai tu,
Tera jaam lene ko bazm main, koi aur hath barrha na de. 

========================================
मेरे हम-नफ़स मेरे हम-नवा मुझे दोस्त बन के दग़ा न दे 
मैं हूँ दर्द-ए-इश्क़ से जाँ-ब-लब मुझे ज़िंदगी की दुआ न दे 

मेरे दाग़-ए-दिल से है रौशनी इसी रौशनी से है ज़िंदगी 
मुझे डर है ऐ मिरे चारा-गर ये चराग़ तू ही बुझा न दे 

मुझे छोड़ दे मिरे हाल पर तिरा क्या भरोसा है चारा-गर 
ये तिरी नवाज़िश-ए-मुख़्तसर मिरा दर्द और बढ़ा न दे 

मेरा अज़्म इतना बुलंद है कि पराए शो'लों का डर नहीं 
मुझे ख़ौफ़ आतिश-ए-गुल से है ये कहीं चमन को जला न दे 

वो उठे हैं ले के ख़ुम-ओ-सुबू अरे ओ 'शकील' कहाँ है तू 
तिरा जाम लेने को बज़्म में कोई और हाथ बढ़ा न दे 

-- Written by Mr. Shakeel Badayuni

Difference between hear and listen

Do you know what's the difference between "hear" and "listen"? 
What's the difference between saying "I can't hear you" and "I can't listen to you"?

Hear


Hear = to receive sounds using your ears. 
This is a passive action, meaning you don't necessarily make a special effort to notice the sounds. 
Examples:
  • She can't hear very well.
  • He heard strange noise coming from the kitchen.
  • I could hear him snoring in the other room.
     

Listen


Listen = to give attention to something or someone because you want to hear them.
Examples:
  • The kids were listening to the story with great interest.
  • She is listening to music on her iPod.
  • Listen to me, you have to do exactly as I say. 
In conclusion, when you listen to something, it means you intend to receive the sounds. You are trying to hear it. 
So if you say, "I can't hear you," it means there is noise, or something else, that doesn't let the sounds reach you.
But when you say, "I can't listen to you," it means you don't want to put your attention on what the other person says. You don't want the sounds to reach you.

Reference: 
1.http://really-learn-english.us6.list-manage.com/
2. http://us6.campaign-archive2.com/?u=b578236440&id=eb739c2bb2&e=27e48a3c12

Auto email sender in ASP.NET with C#

In this blog we will learn: How to trigger email notification in ASP.NET with C# or automatically send email notification using gmail SMTP.
In this electronic era everyone wants a contact us page in their website and on that page people want a adaptive form where their users fill that form with required details and submit. Which may later use those details by admin of that website to contact that user. To create a adaptive form and on click on submit button admin will receive an email. 

first we will design our adaptive form in html, below is the sample.
<html>
<head>
    <title>Adaptive Form/Contact Us</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <table style="width: 247px; height: 105px">
            <tr>
                <td>
                    Name:</td>
                <td>
                    <asp:TextBox ID="txtname" runat="server"></asp:TextBox></td>
            </tr>
            <tr>
                <td>
                    Email:</td>
                <td>
                    <asp:TextBox ID="txtemail" runat="server" ></asp:TextBox></td>
            </tr>
            <tr>
                <td>
                    Message</td>
                <td>
                    <asp:TextBox ID="txtmes" runat="server"></asp:TextBox></td>
            </tr>
            <tr>
                <td>
                </td>
                <td>
                    <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label></td>
            </tr>
            <tr>
                <td>
                </td>
                <td>
                    <asp:Button ID="btnsend" runat="server" Text="Submit" Width="89px" OnClick="btnsend_Click" /></td>
            </tr>
        </table>
   
    </div>
    </form>
</body>
</html>

Now on the click event of submit button we will write the following C# code.
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Net.Mail;
using System.Net;
using System.Text;
using System.Collections.Generic;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
    }
    protected void btnsend_Click(object sender, EventArgs e)
    {
       
        SmtpClient smtpClient = new SmtpClient();
        MailMessage message = new MailMessage();
        try
        {
            // Gmail Address from where you send the mail
            string fromAddress = "from@gmail.com";
            // any address where the email will be sending
            string toAddress = "to@admin.com";
            //Password of your gmail address
            const string fromPassword = "Put your password here";
            // Passing the values and make a email formate to display
            string subject = "Request";
            string body = "From: " + txtname.Text + "\n";
            body += "Email: " + txtemail.Text + "\n";
            body += "Subject: " + txtmes.Text + "\n";
                        // smtp settings
            SmtpClient smtp = new System.Net.Mail.SmtpClient();
            {
                smtp.Host = "smtp.gmail.com";
                smtp.Port = 587;
                smtp.EnableSsl = true;
                smtp.DeliveryMethod = System.Net.Mail.SmtpDeliveryMethod.Network;
                smtp.Credentials = new NetworkCredential(fromAddress, fromPassword);
                smtp.Timeout = 20000;
            }
            // Passing values to smtp object
            smtp.Send(fromAddress, toAddress, subject, body);
            Label1.Text = "Email successfully sent.";
        }
        catch (Exception ex)
        {
            Label1.Text = "Send Email Failed." + ex.Message;
        }
    }
}

Now debug the code and test the functionality