I have one datatable DT (id, name) and I want with dataview DW to select records:
dim DW =new DataView(DT)
dw.RowFilter="name='exp's'"
I got error because in rowfiler has apostrophe ( in datatable there is names with apostrophe). How to present apostrophe in rowfilter string?
Thanks in advance.
regard j
