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
Friday, July 6, 2012
MasterCard Delectable 1-For-1 Deals
Promotion period: 1 July - 30 Sept 2012
Buy 1 FREE 1 Promotion!
Enjoy double the excitement with Debit or Prepaid MasterCard all across Malaysia.
Purchase a Golden Screen Cinemas movie ticket and receive aFREE ticket to share at the same movie session.
Top up RM10 DiGi talktime with your Debit or Prepaid MasterCard and you will receive RM10 FREE when you purchase online.
Not a Debit MasterCard cardholder yet? Sign up now to enjoy a voucher for 1-for-1 regular pizza atPizza Hut.
Terms & conditions apply.
Posted by AG at 1:29 AM 0 comments
Sunday, May 20, 2012
VBA Comparison Operators
VBA Comparison Operators
| Operator | Action |
| = | Equal To |
| < > | Not Equal To |
| < | Less Than |
| > | Greater Than |
| <= | Less Than or Equal To |
| >= | Greater Than or Equal To |
references:
http://www.excelfunctions.net/VBA-Operators-And-Functions.html
Posted by AG at 11:05 PM 0 comments
Tuesday, May 15, 2012
split integer value from others character
#!/usr/bin/perl
use strict;
my $data = '2323424: 2434324, 3455543543';
my @ftr =();
my @values = ();
@values = split(/(\d+)/, $data);
foreach my $val (0 .. $#values) {
unless ( $values[$val] =~/^[0-9]+$/)
{
splice(@values, $val, 1);
}
}
print " @values\n";
exit 0;
Posted by AG at 12:04 AM 0 comments
Labels: Perl, split integer values
Wednesday, May 2, 2012
Perl CGI for beginner
Good post for beginner:
http://www.perlmonks.org/?node_id=44536
Website to download apache : httpd-2.0.64-win32-x86-openssl-0.9.8o.msi
http://httpd.apache.org/download.cgi#apache24
Posted by AG at 12:42 AM 0 comments
Wednesday, April 25, 2012
Della丁噹【不是你的錯】MV youtube
好好听噢~~
丁噹
不是你的錯
作詞:黃婷
作曲:林邁可
音樂停止了 引擎熄火了
窒息的溫柔 尖銳得赤裸
一刀一刀 往我心上割 往傷口裡戳
那麼折磨 為了甚麼
別說你難過 別再安慰我
最爛的理由 是你配不上我
我沒有你想像中脆弱 我會好好的
沒有甚麼 罪不可赦
再痛的痛苦淚水 換不回 一點點感動
我不怪你 不是你的錯
再深的深情容忍 也不能 讓你再愛我
我不怪你 不是你的錯
別說你難過 別再安慰我
最爛的理由 是你配不上我
我沒有你想像中脆弱 我會好好的
沒有甚麼 罪不可赦
再痛的痛苦淚水 換不回 一點點感動
我不怪你 不是你的錯
再深的深情容忍 也不能 讓你再愛我
我不怪你 不是你的錯
再痛的痛苦淚水 換不回 一點點感動
我不怪你 不是你的錯
再深的深情容忍 也不能 讓你再愛我
我不怪你 不是你的錯
我的世界 沒有你 也許更遼闊
就到這裡 錯了又 如何
Posted by AG at 10:40 PM 0 comments
Friday, April 20, 2012
read text file and store line in array
Posted by AG at 12:59 AM 0 comments
Labels: Array, Perl, read txt file store in array
Tuesday, April 17, 2012
read excel file in unix PERL module
popular module :- spreadsheet::ParseExcel
Posted by AG at 7:16 PM 0 comments
Labels: Excel, perl module
Monday, April 16, 2012
Spreadsheet-ParseExcel
http://search.cpan.org/~jmcnamara/Spreadsheet-ParseExcel-0.59/lib/Spreadsheet/ParseExcel.pm
Posted by AG at 7:16 PM 0 comments
Sunday, April 15, 2012
install Spreadsheet::WriteExcel Spreadsheet::ParseExcel
http://cpan.uwinnipeg.ca/htdocs/Spreadsheet-WriteExcel/INSTALL.html
Posted by AG at 11:36 PM 0 comments
Thursday, April 12, 2012
verify whether variable is defined in perl
Posted by AG at 11:53 PM 0 comments
verify whether array is empty perl
Posted by AG at 11:42 PM 0 comments
Tuesday, April 3, 2012
Disable Copy, Cut,Paste, Paste Special Menu in excel
Posted by AG at 10:55 PM 0 comments
Labels: Excel, Macro, paste value only, prevent right click
sample paste value only
http://www.jkp-ads.com/Download.asp#CatchPaste
Posted by AG at 10:53 PM 0 comments
