Browse by Tags

All Tags » C# » .Net (RSS)
Today, I saw an article about Equals and ==, something confuses me. http://forums.asp.net/t/1511559.aspx So I do it myself.   1: static void Main( string [] args) 2: { 3: DoEQ(); 4: Console.ReadLine(); 5: } 6:   7: private static void DoEQ(...
Posted by Yonggang Meng | 1 comment(s)
Filed under: , ,
We all know that CommandArgument Property can remember value or index, but sometimes, there's nothing in it, do you know why? Today, i study for a while, and i find the following two ways. Use <asp:ButtonField CommandName="CMD" />, the CommandArgument...
Posted by Yonggang Meng | 2 comment(s)
Filed under: , , , ,
Client to receive message sent by server: 1: using System; 2: using System.Collections.Generic; 3: using System.ComponentModel; 4: using System.Data; 5: using System.Drawing; 6: using System.Linq; 7: using System.Text; 8: using System.Windows.Forms; 9...
Posted by Yonggang Meng | 5 comment(s)
Filed under: , , ,
Recently, we need import some data from excel to  Oracle database. A strange thing confused me. The excel file has a column, for example PhoneNumber, the format is 999999, here are some example data: 123456 234561 345612 456123 561234 612345 000123...
Posted by Yonggang Meng | 2 comment(s)
Filed under: , , ,
More Posts