Hello:
I'm trying to insert a Pivot Table on an ASP.NET webform and when I connect to the Database, an error ocurrs, "The security configuration on this equipment denied the access for the data set of another domain" or some like this, because it's in spanish ("La configuracion de seguridad de este equipo prohibe el acceso a un origen de datos en otro dominio").

In the HTML i have this code:
<OBJECT id="ptable" style="Z-INDEX: 124; LEFT: 72px; POSITION: absolute; TOP: 8px" classid="clsid:0002E520-0000-0000-C000-000000000046" VIEWASTEXT>

and in the aspx.vb file:
Dim Strjscript AsString

Strjscript = Strjscript & "<script language=""javascript"">" & Chr(13)
Strjscript = Strjscript & "document.all.ptable.ConnectionString = 'Integrated Security=false;user id=XXX; password=XXX; initial catalog=XXX; Data source=XXX; persist security info=False; ';" & Chr(13)
Strjscript = Strjscript & "document.all.ptable.CommandText = 'Select * from cat_municipiosXXX';" & Chr(13)
Strjscript = Strjscript & "</script" & ">" & Chr(13)
Literal1.Text = Strjscript

The OWC file is in the BIN Directory and the Control appears on the webpage but the connection not work.

What can I do to connect for this control and retrieve data?

Thanks for the help, and sorry about my english.