jahlxx Posted September 26, 2016 Posted September 26, 2016 hi. how can I open an app passing parameters? is a isapi app. thanks. Quote
erich.wanker Posted September 27, 2016 Posted September 27, 2016 call your isapi-dll like this: www.domain.com/unigui.dll?user_id=123&more=this&trallalaa=123 procedure TMainForm.UniFormCreate(Sender: TObject); var user_id:String; ... begin user_id:=UniApplication.Parameters.Values['user_id']; hth erich Quote
jahlxx Posted September 27, 2016 Author Posted September 27, 2016 perfect!! thanks. is there any way to put only values? in your example: www.domain.com/unigui.dll?123&this&123 by code, in the uniformcreate, assign the values to variables such as user_id. thanks. 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.