I have generic list say, List<int> and I want to find the duplicate values from the List<int> and store it in new List<int>. There are many ways to achive this. One can loop through all the elements of List<int> and store the duplicate in other list OR can use anonymous method to acieve same. [...]
Archive for July, 2008
How to find duplicate values from List<> ?
Posted in DotNet 2.0, DotNet 3.0, Javascript, Techincal on July 24, 2008 | 3 Comments »
RegisterStartupScript and RegisterClientScriptBlock
Posted in DotNet 2.0, Javascript, Techincal on July 17, 2008 | Leave a Comment »
There two powerful methods available in dotnet two include JavaScript on page from code behind. Normally we write the JavaScript functions on aspx page however in some case we have to dynamic script which we can not write on aspx page for many reasons like the script require some data which we have to [...]