Saturday, November 17, 2018

....फिर तुमको मना कर क्या करना



कोई ग़ज़ल सुना कर क्या करना ,
यूँ  बात बढ़ा कर क्या करना ,
तुम मेरे थे , तुम मेरे हो ,
दुनिया को बता कर क्या करना ,

तुम साथ निभाओ चाहत से ,
कोई रश्म निभा कर क्या करना, 
तुम खफा भी अच्छे लगते हो ,
फिर तुमको मना कर क्या करना

तेरे दर पे आके बैठे हैं
अब घर भी जाकर क्या करना
दिन याद से अच्छा गुजरेगा
फिर तुमको बुलाकर क्या करना। ..

Sunday, January 14, 2018

Saturday, January 23, 2016

HOW TO MAKE SYMBOLS WITH KEYBOARD

Alt + 0153..... ™... trademark symbol
Alt + 0169.... ©.... copyright symbol
Alt + 0174..... ®....registered trademark symbol
Alt + 0176 ...°......degre­e symbol
Alt + 0177 ...±....plus-or­-minus sign
Alt + 0182 ...¶.....paragraph mark
Alt + 0190 ...¾....fractio­n, three-fourths
Alt + 0215 ....×.....multi­plication sign
Alt + 0162...¢....the cent sign
Alt + 0161.....¡..... .upside down exclamation point
Alt + 0191.....¿..... ­upside down question mark
Alt + 1...........smiley face
Alt + 2 ......☻.....bla­ck smiley face
Alt + 15.....☼.....su­n
Alt + 12......♀.....f emale sign
Alt + 11.....♂......m­ale sign
Alt + 6............s­pade
Alt + 5............. ­Club
Alt + 3............. ­Heart
Alt + 4............. ­Diamond
Alt + 13......♪.....e­ighth note
Alt + 14......♫...... ­beamed eighth note
Alt + 8721.... ∑.... N-ary summation (auto sum)
Alt + 251.....√.....s­quare root check mark
Alt + 8236.....∞..... ­infinity
Alt + 24.......↑..... ­up arrow
Alt + 25......↓...... ­down arrow
Alt + 26.....→.....ri­ght arrow
Alt + 27......←.....l­eft arrow
Alt + 18.....↕......u­p/down arrow
Alt + 29......↔... left right arrow
Share it with your friends so they know it too

Friday, January 8, 2016

Sending SMS through ASP.NET using SMS sending API from providers

Hi, Here i am describing you simplest way to send SMS using ASP.NET and API from SMS sender providers.
Whenever you will get SMS's from providers they will give you userid , password and senderid also they will provide you API to integrate with your website to send sms.
If you have any control panel from providers then you will get API from support or SMS Integration section.
To integrate this API you need to use add System.IO and System.Net namespaces.
Below is the demo code:
protected void btnSendMessage_Click(object sender, EventArgs e)
    {
        string senderusername = "xxxxx";
        string senderpassword = "xxxx";
        string senderid = "xxx";       
        string sURL;
        StreamReader objReader;
        sURL = "http://edusms.edusoftechnology.com/smsapps/pushsms.php?username=" + senderusername + "&password=" + senderpassword + "&sender=" + senderid + "&mobile=91" + txtMobileNumber.Text + "&type=1&message=" + txtMessage.Text;
        WebRequest wrGETURL;
        wrGETURL = WebRequest.Create(sURL);
        try
        {
            Stream objStream;
            objStream = wrGETURL.GetResponse().GetResponseStream();
            objReader = new StreamReader(objStream);
            objReader.Close();
        }
        catch (Exception ex)
        {
            ex.ToString();
        }
    }

Note: Please note that your send URL may be different than above. Here i am using http://edusms.edusoftechnology.com/ API.

Wednesday, October 21, 2015

पता नही बेटींयां ये हुनर कहाँ से लाती हैं......

मुझसे मेरी माँ की दो पल की
जुदाई भी सही नही जाती हैं


पता नही बेटींयां ये हुनर 
कहाँ से लाती हैं......

बेटियाँ सब के नसीब में कहाँ होती है,
रब को जो घर पसंद आए वहाँ होती है 

"पराया धन होकर भी कभी पराई नही होती

शायद इसीलिए....
किसी बाप से... हंसकर बेटी की, विदाई
नही होती।।"

Featured Post

Google is Offering Free Online Courses with Certification

Here are 12 FREE Google courses to become skilled in 2023: 1. Data Science with Python. https://lnkd.in/gv22ygU8 2. Basics of Machine Learni...