Visual Studio Ultimate Key: Get link Facebook X Pinterest Email Other Apps October 20, 2014 Visual Studio 2012 Ultimate Key:RBCXF-CVBGR-382MK-DFHJ4-C69G8Visual Studio 2013 Ultimate Key:BWG7X-J98B3-W34RT-33B3R-JVYW9 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