Friday

disable cache on asp page

add following instruction on top of the page
<%@ OutputCache Location="None" VaryByParam="None" %>

No comments:

test smtp server with powershell

Send-MailMessage -SMTPServer smtp.domain.com -To [email protected] -From [email protected] -Subject "This is a test email" -Body ...