Category Archives: Uncategorized

C# feature from 1.0 to 5.0

All C# 2.0 features are supported including: Anonymous methods Iterators Partial classes Generics Nullable types Friend assemblies Static classes Covariance and contravariance Access modifiers on properties Fixed buffers External assembly alias namespace alias qualifier Inline warning control. All C# 3.0 … Continue reading

Posted in Uncategorized | Leave a comment

public  static string GeneratePassword() { int length = 0; Random rdm = new Random(); string characterPool = ” ABCDEFGHIJKLabcdefghijkl12345MNOPQRSTUVWXYZmnopqrstuvwxyz67890″; StringBuilder rs = new StringBuilder(); while (length < 6) { rs.Append(characterPool[(int)(rdm.NextDouble() * characterPool.Length)]); length++; } return rs.ToString(); }

Posted on by dotnetxpt | Leave a comment

Sql server production support interview questions and answers

Posted in Uncategorized | Leave a comment

new in sharepoint 2010

new in sharepoint 2010

More Galleries | Leave a comment

Courses

DOT NET  2008 SHARE POINT (MOSS) 2007 SQL SERVER 2008 & COLLEGE PROJECTS(Academic Projects for IT Students, as part of their MCA, BE, B Tech, BCA, MSc and BSc ( Computer Science, IT) courses.) 1.ASP.NET 2.C# 3.ADO.NET share point training … Continue reading

Posted in Uncategorized | 2 Comments

Dot net production support and application support interview questions and answers

1.What is the Role of Http.Sys in IIS ? HTTP.SYS is the kernel level components of IIS. All client request comes from client hit the HTTP.Sys of Kernel level. HTTP.SYS then makes a queue for each and every request for … Continue reading

Posted in Interview Questions, Uncategorized | Tagged | Leave a comment