views:

33

answers:

0

Hi,

I use asp.net recaptcha control on my website (.net 3.5). I get it from this site: http://code.google.com/apis/recaptcha/docs/aspnet.html version 1.0.4.0

It works great on IE6, chrome, ff, safari but I don't know why it doesn't work on Opera. When I open this page it's blank.

I've prepared just a simple web form which contains only recaptcha control. The markup is:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="test.aspx.cs" Inherits="ClientWebPortal.test" %>
<%@ Register TagPrefix="recaptcha" Namespace="Recaptcha" Assembly="Recaptcha" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <recaptcha:RecaptchaControl ID="recaptcha" runat="server" PublicKey="xxxxx"
        PrivateKey="xxxxxxxx" />
    </div>
    </form>
</body>
</html>

Anybody has any suggestions?

Thanks!

Forgot to add that I use Opera 10.62