o0JoeCool0o schrieb:
> I cannot seem to find the syntax to loop through a datatable I have
> tried a few different things including
>
> for(var i=0; i<dtItems.Rows.length; i++)
Is the right one.
for (var i = 0 ; i < dataTable.Rows.length; i++)
{
var row = dataTable.Rows[0];
alert(row.NameOfColumn);
}
> Ive tried viewing core.ashx but I always get an xml error when i try
> viewing it.
View it with Firefox :)
But the best way is to step with the debugger within the JavaScript.
--
Freundliche Grüße
Albert Weinert
http://der-albert.com
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---