Description:-
In this example we
explain that how to compare two file in asp.net or how to check two files content are same or duplicate in asp.net.
Generally file duplication can create problem when we work with lots of file in our application and most of the aapllication only check file names and creation date or modification date. But in this example we also check the content of two files are equal or duplicate.
Here we compare two file by byte to byte comparision of this two file. Two compare content of the two file in asp.net we used one algorithm and it is known as the Hash Algorithm. This algoriyhm is provided my .Net inbuilt and is aim is to compare two file by byte to byte and return result true or false.
Generally file duplication can create problem when we work with lots of file in our application and most of the aapllication only check file names and creation date or modification date. But in this example we also check the content of two files are equal or duplicate.
Here we compare two file by byte to byte comparision of this two file. Two compare content of the two file in asp.net we used one algorithm and it is known as the Hash Algorithm. This algoriyhm is provided my .Net inbuilt and is aim is to compare two file by byte to byte and return result true or false.
Sorting Row data in gridview Gridview Sorting
How to handle Concurrency in Linq to Sql Concurrency Example