Loading a form into a particular frame

I wonder if anyone can help me with a prob. I have a form that I want loaded into a particular frame. I have a search engine in the head frame at the top of the web page, once you type in the item you’d like to search for, then it loads the results into that same frame. If you set the ‘Auto Frame’ launch to the frame I want, then the search results are not displayed at all!! I am distraught to say the least. Not sure what to do now. Has anyone experienced this? Also tried to set the ‘Target Frame’ to the frame I want, but it seems to ignore that.

Hope someone can help,

Thanks.

Subject: loading a form into a particular frame

How does the value of the Search Form’s Query-field look? Perhaps it contains a TARGET=“framevalue”?/Magnus

Subject: RE: loading a form into a particular frame

The search form looks like this:

db := @Subset (@DbName; -1);
“FORM METHOD=post ACTION="/” + db +
“/ViewSearchGeneric?CreateDocument"ENCTYPE="multipart/form-data">” +
“<INPUT NAME="SearchString" size=10>” +
“<INPUT NAME="ViewToSearch" VALUE="SearchDocs" type=hidden>” +
“<INPUT TYPE=submit VALUE="Find">]”

I tried putting a target in there, with no luck. Still at my wit’s end.

Any other ideas?

Subject: loading a form into a particular frame

Magnus!! You were absolutely right! There must have been a slow replication
the last time I tried that solution because it’s worked strsight away this
morning. I put the target like so:

db := @Subset (@DbName; -1);
“FORM METHOD=post ACTION="/” + db +
“/ViewSearchGeneric?CreateDocument"ENCTYPE="multipart/form-data" target =
"MainWindow">” +
“<INPUT NAME="SearchString" size=10>” +
“<INPUT NAME="ViewToSearch" VALUE="SearchDocs" type=hidden>” +
“<INPUT TYPE=submit VALUE="Find">]”

And that’s done it perfectly! I will remember that little loophole for a long
time now as I’ve explored all kinds of different avenues to resolve this prob.

Thanks again pal.