After I got the dataset from the database, I need to change the value of the rows before binding to the gridview. for example, a dataset is retrieved from a database.
for example: [userid], [userEmail] → 1, james@hotmail.com
I would like to change " james@hotmail.com " to "james" and then bind it to a gridview. Each line of [userEmail] will be separated by a mail extension (@ hotmail.com) ... how should I do ??
source
share