Servlet running twice

I have a servlet I invoke from a button.

The formula behind the button is:

db:=@ReplaceSubstring(@Subset(@DbName;-1);“\”;“/”);

docid:=@Text(@DocumentUniqueID);

agid:=“(Generatedocument)”;

@URLOpen(“http://myserver/servlet/myservlet?dbid=“+db+”&docid=”+docid + “&agid=”+agid + “&actionid=1”)

The servlet creates a document in my database.

This all works fine, but the problem is that the document is created twice in the database. It looks as if the servlet is executed twice. Does anyone have experience with a servlet doing twice what he has to do?

Thanks

Subject: servlet running twice

It seems to be a bug in some IE versions.See

http://support.microsoft.com/default.aspx?scid=kb;EN-US;q293792

Subject: Looks like the user is double clicking the button. Don’t see anything wrong w/ your code.