Thursday, March 21, 2013
Banks to charge 50 sen to process a cheque from April 2014
Posted by AG at 10:57 PM 0 comments
Labels: IBG
Wednesday, March 13, 2013
Send email in HTML format in asp.net
Reference:
1. http://www.aspsnippets.com/Articles/Create-and-send-HTML-Formatted-Emails-in-ASP.Net-using-C-and-VB.Net.aspx
Posted by AG at 6:44 PM 0 comments
Labels: asp.net, c#, email, Send email with HTML format, VB
Auto send email in asp.net
Based on my research this few days, I found that only sql server able to trigger and send email through the database trigger function. while mySQL unable to do that.
another method to do this is create a .asmx web service
2. http://msdn.microsoft.com/en-us/library/swas0fwc(v=VS.100).aspx
Posted by AG at 6:31 PM 0 comments
Labels: asmx, asp.net, auto send email
Monday, January 7, 2013
Reset password in ASP.net Without using email and security question
Here is the good example after several tries.
http://msdn.microsoft.com/en-us/library/d94bdzz2.aspx?cs-save-lang=1&cs-lang=vb#code-snippet-1
Posted by AG at 11:39 PM 0 comments
Labels: asp.net, reset password, VB
send email in asp.net function
MailMessage mail = new MailMessage(); mail.To = "receivers@email.address"; mail.From = "senders@email.address"; mail.BodyFormat = MailFormat.Text; mail.Subject = "Subject of this Email"; mail.Body = "Body of this message."; SmtpMail.Send(mail);
Posted by AG at 11:33 PM 0 comments
Labels: asp.net, email notification
Thursday, August 30, 2012
Remove a startup application
Posted by AG at 9:11 AM 0 comments
Labels: regedit, Remove a startup application
Friday, July 20, 2012
telerik mouse over
credit to http://demos.telerik.com/aspnet-ajax/controls/examples/integration/chartandtooltip/defaultcs.aspx?product=chart
<telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" Skin="Telerik"
Width="200px" Animation="Slide" Position="TopCenter" EnableShadow="true" ToolTipZoneID="RadChart1" AutoTooltipify="true">
telerik:RadToolTipManager>
Posted by AG at 1:46 AM 0 comments