liteci Posted September 23, 2015 Posted September 23, 2015 Hello , How Do I Catch the Client Ip With My Application ?I'll Use Only To register in My System. Quote
ZigZig Posted September 23, 2015 Posted September 23, 2015 Hello liteci, You can try something like this: procedure TFormMain.UniFormActivate(Sender: TObject); var C:TUniClientInfoRec; SessionID:String; IPAddress:String; BrowserType: string; BrowserVersion: Integer; OSType: string; begin SessionID:=UniApplication.UniSession.SessionID; IPAddress:=UniApplication.RemoteAddress; C:=UniApplication.ClientInfoRec; BrowserType:=C.BrowserType; BrowserVersion:=C.BrowserVersion; OSType:=C.OSType; end; see http://forums.unigui.com/index.php?/topic/1486-how-to-get-client-ip-address/?hl=uniapplication.remoteaddress#entry5654 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.