Yeah… Finally, I added DoFollow WordPress plugin. What does DoFollow plugin actually work? Well, it remove (rel=”nofollow”) on hyperlinks. Without “nofollow” on hyperlink, search engines will count those links on their ranking system. Therefore, the more you comment on DoFollow site like - Jayce Ooi’s Paradise. Your website ranking will be up up up!!!
By the way, you can grab the plugin at DoFollow (WP Plugin).
Related topics:
(rel=”nofollow”) on hyperlinks will not improve your website rank
22 May
Posted by Jayce as Programming
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. The statement has been terminated.
Do you face this error during SQL query in C#? Fear no more, my friend. All you need to do is put the timeout period more then default value - CommandTimeout. Follow the code below…
SqlConnection EDCConnectionString = new SqlConnection(”ConnectionString”);
EDCConnectionString.Open();
string SQLTesterStats = “StoredProcedure”;
SqlCommand cmdTesterStats = new SqlCommand(SQLTesterStats, EDCConnectionString);
cmdTesterStats.CommandType = CommandType.StoredProcedure;
cmdTesterStats.Parameters.AddWithValue(”@start”, “04-01-2007 00:00″);
cmdTesterStats.CommandTimeout = 500000;
SqlDataReader TesterStatsReader = cmdTesterStats.ExecuteReader();
DataRow NewRow;
while (TesterStatsReader.Read())
{
NewRow[”product”] = TesterStatsReader[”family_name”].ToString();
}
TesterStatsReader.Close();
EDCConnectionString.Close();
Below code will help to keep the time synchronized between 2 systems. Just open command prompt and run these code.
net time \\TimeServer /set /yes
Replace TimeServer with the system name that you want to sync. After running this command, your current system will follow the TimeServer’s time.
Related topics:
Launch System Configuration Utility at Run - shortcut
Launch Remote Desktop Connection at Run - shortcut
Guide to change folder ownership
Below is the source code that will send email in Chinese or other character than English.
using System.Net.Mail;
MailMessage oMsg = new MailMessage();
oMsg.From = new MailAddress(”Email”, “Name”);
oMsg.To.Add(new MailAddress(”Email”,”Name”));
oMsg.Subject = “subject”;
oMsg.Body = “Chinese character”;
oMsg.BodyEncoding = System.Text.Encoding.GetEncoding( “utf-8″ );
SmtpClient c = new SmtpClient(”SMTP”);
c.Send(oMsg);
You can find more character set recognition at Microsoft page here.
Related topics:
Send email with attachment c# source code
17 May
Posted by Jayce as Programming, Web
(rel=”nofollow”) on hyperlinks will not improve your website rank? Is this true? Yes. It will not improve your website ranking as search engine will ignore it when it find (rel=”nofollow”) on hyperlinks.
Therefore, do not bother to leave comment at blog which have this (rel=”nofollow”) on their hyperlinks.
I did that a lot before I read this post. ![]()
Related topics:
DoFollow added… NoFollow removed… =)