Hi All!
I was using DropDownLink.aspx of AjaxASPNETVB.msi pagkge and I found
Error:
Sometime I use lines code:
for (var i = 0; i < states.Rows.length; ++i)
{
statesList.options[statesList.options.length] = new
Option(states.Rows[i].TenQuanHuyen, states.Rows[i].IdQuanHuyen);
}
it appeared error and then I used lines code:

for (var i = 0; i < states.length; ++i)
{
statesList.options[statesList.options.length] = new
Option(states[i].TenQuanHuyen, states[i].IdQuanHuyen);
}
it didn't appear error but when i used it a few times it appeared error
and then i used these old lines code it didn't appear error.


--~--~---------~--~----~------------~-------~--~----~
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