2
Answers

C# Transaction Log

Photo of David Smith

David Smith

13y
2k
1
I want to be able to log any transaction made to the dataset. So when a user insert, delete, or update etc.... I want to be able to log info.
My  question is can someone point me in the right direction of taking the best of approach of designing a good transaction log. At the moment
I have creat a table in the dataset call transaction log. So when a user delete, insert or updates a specific row. I log it in the table.
Can someone point me to a great article of some sort

Answers (2)

0
Photo of Satyapriya Nayak
NA 53k 8m 13y
Hi Mike,

Urlencode can be used to encode a string that can be used in a url. It encodes the same way posted data from web page is encoded. It returns the encoded string.
Syntax: urlencode (string $str )

Urldecode can be used to decode a string. Decodes any %## encoding in the given string (Inserted by urlencode)
Syntax: urldecode (string $str )


Please refer the below link


http://www.php.net/manual/en/function.urlencode.php

http://php.net/manual/en/function.urldecode.php



Thanks