Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Return ArrayList
Message
From
23/07/2003 10:05:37
 
 
To
All
General information
Forum:
ASP.NET
Category:
XML
Title:
Return ArrayList
Miscellaneous
Thread ID:
00812764
Message ID:
00812764
Views:
46
Hi. Is it possible to know how to return an ArrayList from a Webmethod.
This is the code I've done but it doesn't work

[WebMethod]
public ArrayList testing()
{
ArrayList al = new ArrayList();
al.Add("qqq");
al.Add(2);
al.Add("eee");
al.Add(3);
al.Add("rrr");
al.Add("*");

return al;
}

I also tried :
[WebMethod]
public ArrayList testing()
{
ArrayList al = new ArrayList();
al.Add("qqq");
al.Add(2);
al.Add("eee");
al.Add(3);
al.Add("rrr");
al.Add("*");

return al;
}
Reply
Map
View

Click here to load this message in the networking platform