|
-
Apr 30th, 2003, 10:12 AM
#1
Thread Starter
Sleep mode
Decrypting returned data from dataview
Everything is fine , encryption\decryption is fine too , working very well , but I'm stuck in this little problem , How to decrypt the whole dataview object before I bound it to any control ?
bear in mind that encryption\decryption routines accept only string and the enc\dec key !
VB Code:
Dim dv As New DataView(ds.Tables(TableStr), "" & colum & " Like'" & SearchText & "%'", colum, DataViewRowState.CurrentRows)
Thanks
-
Apr 30th, 2003, 11:59 AM
#2
Thread Starter
Sleep mode
It sounds easy...anyways it's *bump*...lol
-
Apr 30th, 2003, 01:14 PM
#3
Thread Starter
Sleep mode
I figured out %50 of it (I can search with encrypted values) and data shown is the listbox but ofcourse encoded. I need to decrypt those values before I bind them to the listbox . Help plz .
VB Code:
Dim dv As New DataView(ds.Tables(TableStr), "" & colum & " Like'" & Crypt.EncryptText(SearchText, KeyC) & "%'", colum, DataViewRowState.CurrentRows)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|