My string already has % in the string how to use like function to the string
Dataview dv=new dataview(dt);
string Name="Din%esh";
dv.RowFilter="UserName like '%"+Name+"%';
dv.Table=dv.ToTable();
but its not working since I have % in my string
Go to the complete details ...