.Net FAQ
- Difference between a.Equals(b) and a == b If both a and b are value type then then you will get same result in a.Equals(b) and a == b. but in case of reference type both behaves differently : eg. string a = new string(new char[] {'d', 'a', 'n', 'c', 'e'}); string b = new string(new char[] {'d', 'a', 'n', 'c', 'e'}); object c = a; object d = b; Console.WriteLine (a==b); Console.WriteLine (a.Equals(b)); Console.WriteLine (c==d); Console.WriteLine (c.Equals(d)); } } Output will be; True True False True FAQ
Master page events Events
- Master Page Child Control Initialization
- Content Page Child Control Initialization
- Master Page Initialization
- Content Page Initialization
- Content Page Load
- Master Page Load
- Master Page Child Controls Load
- Content Page Child Controls Load
How IIS Process ASP.NET Request http://www.dotnetfunda.com/articles/article821-beginners-guide-how-iis-process-aspnet-request-.aspx
http://computerauthor.blogspot.com/2011/04/sql-server-interview-question-what-is.html
0 comments:
Post a Comment