Archive for September 2014
Send Email in Umbraco
Instead using the ASP.Net email sending code, we can use the following code to send email in Umbraco web applications.
<mailSettings>
<smtp>
<network
host="smtp.gmail.com"
port="587"
userName="email@gmail.com"
password="password"
defaultCredentials="false"
enableSsl="true" />
</smtp>
</mailSettings>
</system.net>
<mailSettings>
<smtp>
<network
host="smtp.mail.yahoo.com"
port="465"
userName="email@yahoo.com"
password="password"
defaultCredentials="false"
enableSsl="true" />
</smtp>
</mailSettings>
</system.net>
library.SendMail("from@email.com", "to@email.com", "Subject", "Body", false);
}
Web.Config Configuration:
Gmail SMTP Settings:
<system.net><mailSettings>
<smtp>
<network
host="smtp.gmail.com"
port="587"
userName="email@gmail.com"
password="password"
defaultCredentials="false"
enableSsl="true" />
</smtp>
</mailSettings>
</system.net>
Yahoo Mail SMTP Settings:
<system.net><mailSettings>
<smtp>
<network
host="smtp.mail.yahoo.com"
port="465"
userName="email@yahoo.com"
password="password"
defaultCredentials="false"
enableSsl="true" />
</smtp>
</mailSettings>
</system.net>
Razor:
if (IsPost) {library.SendMail("from@email.com", "to@email.com", "Subject", "Body", false);
}
Solved: Handler “PageHandlerFactory-Integrated” has a bad module “ManagedPipelineHandler” in its module list
It turns out that this is because ASP.Net was not completely installed with IIS even though I checked that box in the "Add Feature" dialog. To fix this, I simply ran the following command at the command prompt
If I had been on a 32 bit system, it would have looked like the following:
%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -i
If I had been on a 32 bit system, it would have looked like the following:
%windir%\Microsoft.NET\Framework\v4.0.21006\aspnet_regiis.exe -iReference: StackOverflow
How to set/change the SQL Server 2008 R2 sa’s password after installation?
In this article we will take a look at how to change SA Password in SQL Server
using TSQL code and by using SQL Server Management Studio. The steps mentioned
in this article are applicable to change any SQL Server Login Password works on
SQL Server 2005 and higher versions.
T-SQL Statement:
Use Master
Go
ALTER LOGIN [sa] WITH PASSWORD=N'JJSqlServer', CHECK_POLICY = OFF
Go
T-SQL Statement:
Use Master
Go
ALTER LOGIN [sa] WITH PASSWORD=N'JJSqlServer', CHECK_POLICY = OFF
Go