Did you try using localhost and not http://192.168.1.11.  IE 6 allows cross domain XML HTTP Request and FireFox does not, by default.
 
Joseph Guadagno
http://josephguadagno.net

 
On 6/12/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

Thanks Michael. I do not get an error when going to
http://www.ajaxpro.info/ using Safari & Firefox from Mac OS X. I also
tested some of the sample pages you have setup, and they worked fine as
well. I am thinking that something in my configuration or coding is
creating a problem. I just can't seem to pinpoint the problem. Here is
the client-side java,

<script type="text/_javascript_"
src=""><script type="text/_javascript_" src=""
<script type="text/_javascript_"
src=""><script type="text/_javascript_"
src="" "></script>

</script>
<script language="_javascript_" type="text/_javascript_">
Conx.Sys.Ajax. {
var l = document.getElementById("loadinfo");
l.style.visibility = b ? "visible" : "hidden";}

Conx.Sys.Ajax.>
function CallService (actionCtrl) {
var container = document.getElementById ('ctl06_acControls').value;
var ds = new Ajax.Web.DataSet();
var dtValues = new Ajax.Web.DataTable();
dtValues.addColumn("ctrlId", "System.String");
dtValues.addColumn("ctrlValue", " System.String");
var row = new Object();
row.ctrlId = "ctl06_txtStartDT";
row.ctrlValue = document.getElementById('ctl06_txtStartDT').value;
dtValues.addRow(row);
....cont'd

gridValues (dtValues);
ds.addTable(dtValues);

Conx.Sys.Ajax.asyncFunction(ds, container, actionCtrl, asyncCallBack);
}

function asyncCallBack(response) {
var ds = response.value;
if(ds != null && typeof(ds) == "object" && ds != null){
for (var i = 0; i < ds.Tables[0].Rows.length; i++)
{
   var ctrlId = ds.Tables[0].Rows[i].ctrlId;
   var property = ds.Tables[0].Rows[i].property;
   var value = ds.Tables[0].Rows[i].value;
   var text = ds.Tables[0].Rows[i].text;
   switch (property) {

   case 'innerHTML':
     document.getElementById(ctrlId).innerHTML=value;
     break;
     ....cont'd
   };
}
}
else{
alert("Error: no data returned");
}
}
</script>

<script id="grdScripts" language="_javascript_" type="text/_javascript_">
function gridValues (dtValues) {
var row = new Object();
row.ctrlId = "ctl06_gvUserSessions_ctl02_adh001";
row.ctrlValue =
document.getElementById('ctl06_gvUserSessions_ctl02_adh001').value;
dtValues.addRow(row);
....cont'd

}

thanks, Grey






--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ajax.NET Professional" group.

To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]

For more options, visit this group at http://groups.google.com/group/ajaxpro

The latest downloads of Ajax.NET Professional can be found at http://www.ajaxpro.info
-~----------~----~----~----~------~----~------~--~---

Reply via email to