MSDEVBUILD - Community of Microsoft AI, Azure and Xamarin by Suthahar - Solution Architect for Microsoft AI, Azure, Xamarin | Tech Author and Speaker
IntroductionAzure App service is an HTTP based service for hosting web applications, Rest APIs and mobile back ends, you can develop in your known language using .Net, .Net core, Java,...
Singleton Static Class 1 Single means single object across the application life cycle so it application level The static does not have any Object pointer, so the scope is at App Domain...
C# 6.0 New Feature How to get C# Updated Version? Two ways we can update C# 6.0 Updated Visual Studio into VS 2014 Or Installing Roslyn Package in VS 2013...
Dot - Less {} Dynamic CSS for .Net LESS extends CSS with dynamic behavior such as variables, mixins, operations and functions. Download latest dot less package http://www.dotlesscss.org/ , ...
Java Script: <script language="javascript"> document.onmousedown=disableclick; status="Right Click Disabled"; Function disableclick(e) { if(event.button==2) { alert(status); return false; } } </script> HTML Coding: <body oncontextmenu="return false"> ... </body> ...
using System.Net.Mail; Coding: MailMessage om = new MailMessage("suthahar@gmail.com", "jssuthahar@gmail.com"); //om.CC // om.Bcc om.Subject = "Welcome to Suthahar bogs"; om.Body = value; om.IsBodyHtml = true; om.Priority=MailPriority.High; SmtpClient os=new SmtpClient(); os.Host =...
Cascading Style Sheets cascade. This means that the styles are applied in order as they are read by the browser. The first style is applied and then the second and...
using System.Net.Mail; using System.Net; MailMessage mail = new MailMessage(); mail.To.Add("**@gmail.com"); mail.To.Add("**@gmail.com"); mail.From = new MailAddress("**@gmail.com"); mail.Subject = "Email using Gmail"; string Body = "Hi, this mail is to test sending...
Reset Controls Value using Asp.net / Javascript / Jquery Asp.net: Dynamicaly you have to add controls means you don't know controls id so we can find control type in particular...
Lambda Expression (=>): A lambda expression is an unnamed method written in place of a delegate instance. The compiler immediately converts the lambda expression to either Delegate Instance Unmanaged Method...
Whether you're a student, beginner, or professional looking to upskill with Microsoft Azure, here are 3 ways to get started with zero ...