Monthly Archives: April 2011

Migrate / Move local MS SQL database to SQL Azure – video

1. Create a database in SQL Azure name northwind. 2. Right click the northwind database, go to Tasks… and select Generate script. 3. Choose the objects that you want to script. 4. Click the Advance button. 5. Under the Script … Continue reading

Posted in .Net | Tagged | Leave a comment

Develop and deploy your first simplest Windows Azure sample – video

Watch the video below.     Resources: http://www.microsoft.com/windowsazure/getstarted/default.aspx http://channel9.msdn.com

Posted in .Net | Tagged | Leave a comment

Create a sub row in ListView

If you want to create a sub row like below.        Change the EditTemplate in ListView as below.   <EditItemTemplate>   <trstyle=””>     <td>       <asp:ButtonID=”UpdateButton”runat=”server”CommandName=”Update”Text=”Update”/>         <asp:ButtonID=”CancelButton”runat=”server”CommandName=”Cancel”Text=”Cancel”/>     </td>      <td>        <asp:TextBoxID=”EmpNameTextBox”runat=”server”Text=’<%# Bind(“EmpName”) %>‘/> … Continue reading

Posted in .Net | Tagged | Leave a comment

Fake Anti-virus software Win 7 Total Security 2011

Watch out when you are looking for FREE anti-virus software.  If you get something like Win 7 Total Security 2011 then good luck to you. Somehow I found a link to clean it but I never tried because I wasn’t … Continue reading

Posted in Computers and Internet | Tagged | Leave a comment

Cannot open server ‘oca4xx33xx’ requested by the login. Client with IP address ‘25.25.25.25’ is not allowed to access the server. To enable access, use the SQL Azure Portal or run sp_set_firewall_rule on the master database to create a firewall rule for this IP address or address range. It may take up to five minutes for this change to take effect. Login failed for user ‘adminabc’.

Add a firewall rule to resolve this problem as the picture below. Make sure you are using SQL Server 2008 R2.

Posted in .Net | Tagged | Leave a comment

Error Attaching the debugger in Windows Azure SDK 1.3

If you encounter the error like us “There was an error attaching the debugger to the IIS….” as below.     I solved the error by changing the target .NET Framework to 3.5 instead of 4.0. Good luck.   Resources: … Continue reading

Posted in .Net | Tagged | 1 Comment

Send email through gmail smtp server, smtp.gmail.com, using C# – sample

Gmail is providing free smtp server so does yahoo. The sample below is using gmail.   using System.Net.Mail; using System.Net;   namespace ConAppNetMail {   class Program   {     static void Main(string[] args)     {       MailMessage newMessage = new MailMessage(); … Continue reading

Posted in .Net | Tagged | 1 Comment

Write a console simple program to find a list of repeated string in text file – sample

The program below is to find a string “Login.aspx” in a IIS log named “u_ex110418.log”.   using System.IO;   namespace ConAppIO {   class Program   {     static void Main(string[] args)     {       //Counter       int intCount = … Continue reading

Posted in .Net | Tagged | 1 Comment

Chat with Facebook users using Live Messenger

Click the small icon at the bottom of Live Messenger shows below.  

Posted in Computers and Internet | Tagged | 2 Comments

How to write a C# program to compile Java

Trust me. It is as simple as the code below.   class Program {   static void Main(string[] args)   {     System.Diagnostics.Process.Start(“Javac”, “D:\\VCSharpTemp\\Java\\SimpleCalculator.java”);   } }

Posted in .Net | Tagged | 5 Comments