while working with a server side script (php or aspx) which returns some data(from the database) can we call it in a sub-class or do we have to make the calls in the document class itself?
while working with a server side script (php or aspx) which returns some data(from
Share
You can make it in either place, but I prefer it being in a sub class that specifically handles interation with web services, to better organize my code. URLRequest + URLLoader are the classes I use for such tasks.