Android Kitkat 4.4 Get link Facebook X Pinterest Email Other Apps December 13, 2013 Full Screen Immersive Mode NFC Platform Support Print Any Where By Phone or Tablet Screen Recording Quick Office App Voice Search Low Power Sensor Infrared Blaster Chromium Web view for HTML5 & CSS3 pages Get link Facebook X Pinterest Email Other Apps Comments
Send Mail Using ASP.Net March 11, 2014 public static bool Send(string ToAddr, string Subject, string Body) { try { MailMessage Msg = new MailMessage(); Msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserver", "smtp.gmail.com"); Msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport", "465"); Msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusing", "2"); Msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1"); Msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "youremail@gmail.com"); Msg.Fields.Add("http://schemas.microsoft.com/cdo/configurat... Read more
jQuery Ajax PHP Connectivity Example November 07, 2018 Ajax_jQuery.html <!DOCTYPE html> <html> <head> <title>Ajax jQuery Example</title> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="Ajax_jQuery.js"></script> </head> <body> <form id="AJ_Form" method="POST" action="Ajax_jQuery.php"> Username <input type="text" name="username" id="username" placeholder="Username"><br> Password <input type="password" name="password" id="password" placeholder="Password"><br> <input type="button" name="submit" id="submit" value="Login"><br> <div id="query_result"></div> </form> </body> </html> Ajax_jQuery.js $(document).ready(function(){ $("... Read more
Comments
Post a Comment