mikelawrence
Programmer
My customers are concerned with fraud happening on their system and want to record the IP address of machines accessing their system. I'm using ASP pages with SQL Server 2003. My customers are using generic admin logons so many people could use the same logon. I appreciate this is deeply flawed but this is the way the customer wants it. So in theory i just want to do an insert into a sql table along the lines of
INSERT INTO TransferTrackingHistory(Transfer_From,Transfer_To, Amount, IPaddress)
VALUES(@from, @to, @amount, @ipaddress)
so my problem is how to get @ipaddress.
Any help is much appreciated
thanks
mike
INSERT INTO TransferTrackingHistory(Transfer_From,Transfer_To, Amount, IPaddress)
VALUES(@from, @to, @amount, @ipaddress)
so my problem is how to get @ipaddress.
Any help is much appreciated
thanks
mike