| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
24 minutes ago
» Replies: 1
» Views: 100
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 97
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 109
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 388
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 196
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 561
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 189
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,127
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 322
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 920
|
|
|
| strange iis tracing issue |
|
Posted by: PDSBILL - 05-24-2024, 05:47 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
We have an IW isapi application that has a timer component that was named "TIMERLOAD" we were seeing massive number IIS traffic like "callback=TIMERLOAD.DoOnAsyncTimer&IW_AjaxID=17165722656061658&IW_SessionID'
I updated the program and renamed the component to TIMERLOAD2. but I am still seeing
"callback=TIMERLOAD.DoOnAsyncTimer&IW_AjaxID=17165722656061658&IW_SessionID"
Is there something I am missing such as an internal name that doesn't change when you change the component name???
|
|
|
| TIWMemo displayed with wrong margins |
|
Posted by: Lorbass - 05-23-2024, 11:31 AM - Forum: IntraWeb General Discussion
- No Replies
|
 |
For example the following settings:
IWMemo.Align := alTop;
IWMemo.AlignWithMargins := True;
IWMemo.Margins.Left := 16;
IWMemo.Margins.Right := 16;
In design mode it works correctly.
At runtime the memo will displayed with left margin 0 and right margin 32!
BTW:
The cursor is not visible if no text has been entered yet.
Version 15.6.0
Please correct these bugs.
Thanks!
|
|
|
| reading assession.request.pathinfo error |
|
Posted by: lfeliz - 05-22-2024, 12:33 AM - Forum: IntraWeb General Discussion
- Replies (3)
|
 |
Hello
I am migrating a couple apps from
IW 14.2.7 to IW 15.2.55. both use 3rd party CGDevtools components.
First app recompiled and works great. Second app has an app violation and I have isolated it down to a a line that of code not in first app.
TIWServerController.IWServerControllerBaseBrowserCheck( aSession: TIWApplication; var rBrowser: TBrowser);
var s0 : String;
begin
s0 := asession.Request.PathInfo;
.......
This code works and allows me to check path info in IW14 no problem.
In IW15 any idea as to what I am doing wrong here. I check browser and client info as part of security and also use as part of process to ignore load balancer health checks and closed.
I tried this on a test VM with latest IW 15 version and same. Throws access violation. So what is best way to access the request information when new session is created?
Thanks.
|
|
|
| Form with required fields |
|
Posted by: Comograma - 05-20-2024, 10:04 AM - Forum: IntraWeb General Discussion
- Replies (3)
|
 |
Hi have a form with several fields (TIWBSInputs) which are mandatory/required.
So, I set required property to true for those fields.
When I submit the form, it should receive messages on the inputs that are empty, but no go.
Can anyone give a simple example on how this should be? I'm using Bootstrap 3.
|
|
|
| Using Template Variables |
|
Posted by: jeroen.rottink - 05-14-2024, 02:42 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
Reading https://www.atozed.com/2024/05/whats-new...traweb-15/ is noticed Template Variables. They were added in IW15.5.4
There is no demo available but the source helps me out a bit.
Currently I use something similar I created using TIWTemplateProcessorHTML.OnAfterProgress etc. This works but I would like to migrate to this IW offered feature.
There is one part I can't solve yet. I use variables in HTML and javascript.
Code: <div class="value">{%dbProject%}</div>
<script>
function updateProjectInfo() {
var projectName = "{%dbProject_escaped%}";
// ...
}
</script>
'_escaped' is a modifier that tells my template processor to escape the value that is returned according to the javascript rules.
Is it possible to use Template Variables and achieve the same effect.
|
|
|
|