Browse by Tags
All Tags »
C# (
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(...
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...
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...
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...
I have a web project, in the project, there is a MasterPage and some WebContentPages. In the MasterPage, there is a function, when you click a button, show or hide the left content.When you refresh or navigate other WebContentPage, the left content keeps...
More Posts