<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<font size="4"> I want to create a situation where clicking on a
feature in a vector layer opens an HTML file and passes several
attributes of the feature to the HTML file. I have successfully
created an action which opens the HTML file, but I can't figure
out how to pass the arguments. <br>
My action "type" is "open" and if the "Action Text" is<br>
C:/temp/receiveParms.html<br>
then the web page opens. But if the "Action Text" is<br>
C:/temp/receiveParms.html?arg1=C&arg2=D<br>
the web page fails to open. I also tried <br>
C:/temp/receiveParms.html?arg1="C"&arg2="D"<br>
and<br>
C:/temp/receiveParms.html?arg1=[% "garden" %]<br>
where "garden" is the name of an attribute.<br>
All of these efforts to pass arguments to an HTML file fail to
open the file.<br>
<br>
In order to verify that receiveParms.html knows how to accept
arguments, I wrote sendParms.html which includes the following
line:<br>
<a href="C:\temp\receiveParms.html?arg1=abc&arg2=xyz"><br>
This works as expected, successfully passing two parameters.<br>
I'm attaching the two HTML files.<br>
I'd be grateful if someone can tell me what I'm doing wrong.<br>
Thanks in advance for any suggestions.<br>
<br>
</font>
</body>
</html>