Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Return ArrayList
Message
From
23/07/2003 10:07:32
 
 
To
All
General information
Forum:
ASP.NET
Category:
XML
Title:
Return ArrayList
Miscellaneous
Thread ID:
00812765
Message ID:
00812765
Views:
39
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);
return al;
}

I also tried :
[WebMethod]
[XmlInclude(typeof(ArrayList))]
public Object testing()
{
ArrayList al = new ArrayList();
al.Add("qqq");
al.Add(2);
return al;
}

thank you in advance.
Next
Reply
Map
View

Click here to load this message in the networking platform