Azure App Service: Publish Asp.net Core Web App

Monday, February 08, 2021 | Comments (0)

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,...

Read more

Difference between Singleton and Static Class

Friday, August 26, 2016 | Comments (0)

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...

Read more

C# 6.0 New Feature

Friday, January 23, 2015 | Comments (0)

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...

Read more

LESS extends CSS with dynamic behavior such as variables, mixins, operations and functions.

Thursday, August 01, 2013 | Comments (0)

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/ , ...

Read more

Disable Right Click in IE

Sunday, April 28, 2013 | Comments (0)

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> ...

Read more

Sending Email using gmail

Sunday, August 26, 2012 | Comments (0)

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 =...

Read more

Override Inline Styles with CSS [ !important ]

Wednesday, February 08, 2012 | Comments (1)

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...

Read more

ASP.NET TIPS: SENDING EMAIL USING ASP.NET (GMAIL OR YOUR SERVER)

Sunday, September 18, 2011 | Comments (0)

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...

Read more

Reset Controls Value using Asp.net / Javascript / J query

Tuesday, September 13, 2011 | Comments (0)

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...

Read more

Delegate-Lambda Expression (=>):

Wednesday, August 31, 2011 | Comments (0)

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...

Read more

Featured Post

How to Get an Free Azure Subscription for Learning

Whether you're a student, beginner, or professional looking to upskill with Microsoft Azure, here are 3 ways to get started with zero ...

MSDEVBUILD - English Channel

MSDEVBUILD - Tamil Channel

Popular Posts