DotNetNuke: Send Email Using DotNetNuke Core API
Posted by Umer Nawab in Uncategorized on May 11th, 2009
Use the method specified below to send email using DotNetNuke Core API:
DotNetNuke.Services.Mail.Mail.SendMail
Courtesy: http://woaychee.wordpress.com/2008/01/22/send-email-using-dotnetnuke-framework/
Performing Browser Detection Using ASP.NET
Posted by Umer Nawab in Development Blogs, Dot Net on May 11th, 2009
An excellent article about browser detection in ASP.NET
DotNetNuke: Redirect to Login Page
Posted by Umer Nawab in Development Blogs, DotNetNuke on May 6th, 2009
Use the following to redirect to login page in DotNetNuke:
If Not Request.IsAuthenticated Then
Response.Redirect(Globals.NavigateURL(PortalSettings.LoginTabId, True, PortalSettings, “Login”, “returnurl=” & Server.UrlEncode(Request.Url.ToString)))
End If
Courtesy: http://blog.pnbconsulting.com.au/index.php/dotnetnuke-redirect-after-login/
DotNetNuke: find if User is logged in or Not
Posted by Umer Nawab in Development Blogs, DotNetNuke on May 6th, 2009
Check the property:
HttpContext.Current.User.Identity.IsAuthenticated
to find whether user is logged in or not.
Run Scheduled Tasks in ASP.NET
Posted by Umer Nawab in Development Blogs, Dot Net on December 1st, 2008
ASP.NET Caching - OnDotNet.com
Posted by Umer Nawab in Dot Net on September 27th, 2008
A very good article on ASP.NET Caching:
http://www.ondotnet.com/pub/a/dotnet/2002/12/30/cachingaspnet.html
ASP.NET Machine Key Generator
Posted by Umer Nawab in Development Blogs on September 15th, 2008