kalitsikka.blogspot.com
Striking with .Net technology: Scrum Methodology
http://kalitsikka.blogspot.com/2010/02/origins-of-scrum-scrum-software.html
Striking with .Net technology. Saturday, February 6, 2010. The Origins of Scrum. The Scrum software development process is arose from shared concerns between Advanced Development Methods (ADM) and VMARK Software (VMARK). ADM produces process automation software. VMARK produces object-oriented software development environments. Both companies were concerned over the lack of breakthrough productivity being reported in object-oriented development projects. Both ADM's and VMARK's products are...Scrum formali...
kalitinterviewquestions.blogspot.com
Interview Questions on .Net: Difference between outer join and inner join
http://kalitinterviewquestions.blogspot.com/2010/02/difference-between-outer-join-and-inner.html
Interview Questions on .Net. Thursday, February 25, 2010. Difference between outer join and inner join. We use this when we compare two colums from two different table .Based on equality or non equality, we retrieve the rows matched. Select emp.empid , order.orderid. From emp Innerjoin order. On Emp.empid=order.empid. This example gives all the rows from emp,order tables where the empid's in both the tables are same. There are three types of outer joins namely:. Stud1: id Name stud2: id Name. 1 xxx 1 aaa.
kalitinterviewquestions.blogspot.com
Interview Questions on .Net: .Net Framework Interview Questions
http://kalitinterviewquestions.blogspot.com/2009/10/net-framework-interview-questions.html
Interview Questions on .Net. Tuesday, October 20, 2009. Net Framework Interview Questions. 1 When was .NET announced? Bill Gates delivered a keynote at Forum 2000, held June 22, 2000, outlining the .NET 'vision'. The July 2000 PDC had a number of sessions on .NET technology, and delegates were given CDs containing a pre-release version of the .NET framework/SDK and Visual Studio.NET. 2 When was the first version of .NET released? 3 What platforms does the .NET Framework run on? 8226; To provide a code-ex...
kalitinterviewquestions.blogspot.com
Interview Questions on .Net: JavaScript Object Notation (JSON)
http://kalitinterviewquestions.blogspot.com/2010/02/javascript-object-notation-json.html
Interview Questions on .Net. Thursday, February 25, 2010. JavaScript Object Notation (JSON). JavaScript Object Notation (JSON). To allow for a more efficient transfer of data and classes between web applications and. Web services, ASP.NET AJAX supports the JavaScript Object Notation (JSON) format. It is. Lighter weight than XML (Extensible Markup Language)/SOAP (Simple Object Access. Protocol), and delivers a more consistent experience because of the implementation. Stores a person’s name and age:. Diffe...
kalit-codesnippetsofnettechnology.blogspot.com
Code snippets for .Net technology: Get ASCII in C#
http://kalit-codesnippetsofnettechnology.blogspot.com/2011/03/get-ascii-in-c.html
Code snippets for .Net technology. Thursday, March 3, 2011. Get ASCII in C#. Public static string GetASCIIValue(string strValue). Return Encoding.ASCII.GetString(. Encoding.ASCII.EncodingName,. New EncoderReplacementFallback(string.Empty),. String s1 = FinancialMIS Apps.StringManipulation.GetASCIIValue("Expression");. String s2 = FinancialMIS Apps.StringManipulation.GetASCIIValue("Räksmörgås");. Subscribe to: Post Comments (Atom). 3-Tier architecture in .Net. Appling Linq on ADO.net. Mail Merge in C#.
kalit-codesnippetsofnettechnology.blogspot.com
Code snippets for .Net technology: July 2011
http://kalit-codesnippetsofnettechnology.blogspot.com/2011_07_01_archive.html
Code snippets for .Net technology. Friday, July 22, 2011. Comma separated values in SQL Server. For comma seperated value. SELECT id,id AS idlist ,VName [Name],0 AS [Status] FROM testTableData. WHERE fk id = 0. SELECT ct.id,tt.id AS idlist,tt.Vname [Name],1 AS [Status] FROM testTableData tt. INNER JOIN ctm AS ct ON ct.id = tt.FK id. AND ct.[Status] = 0. SELECT * FROM ctm ORDER BY id,idlist,[Name]. Subscribe to: Posts (Atom). 3-Tier architecture in .Net. Appling Linq on ADO.net. Export to Excel with XSLT.
kalit-codesnippetsofnettechnology.blogspot.com
Code snippets for .Net technology: April 2011
http://kalit-codesnippetsofnettechnology.blogspot.com/2011_04_01_archive.html
Code snippets for .Net technology. Friday, April 1, 2011. Recursive Search for Folders and Files. Public ClsFolderNFileCollection GetCollectionOfRecursiveDirAndFiles(string Src, List. ClsFolderNFileCollection objDirAndFileCollection = new ClsFolderNFileCollection();. Files = Directory.GetFileSystemEntries(Src);. Foreach (string Element in Files). ObjDirAndFileCollection.FolderCollection.Add(Element);. GetCollectionOfRecursiveDirAndFiles(Element, Elements);. Throw new Exception(ex.Message);. Striking with...
kalit-codesnippetsofnettechnology.blogspot.com
Code snippets for .Net technology: DateTime Stamp Functions
http://kalit-codesnippetsofnettechnology.blogspot.com/2011/03/datetime-stamp-functions.html
Code snippets for .Net technology. Monday, March 28, 2011. Public static string DateTimeIn24Hours(). Return DateTime.Now.ToString("yyyyMMddHHmm");. Public static string DateTimeWithUniqueID(). String guid = Guid.NewGuid().ToString();. Return DateTime.Now.ToString("yyyymmdd") guid;. Labels: DateTime File Names. Subscribe to: Post Comments (Atom). 3-Tier architecture in .Net. Appling Linq on ADO.net. Check password strength in javascipt. Convert Text into Title Case/Sentance Case. Export to Excel with XSLT.