Youtube Gdata feeds are not in proper order as requested

xabiiii

New Member
I trying to retrieve feeds from multiple videos at a time using dot net..the order in which i am sending the request is as follows..i.e with the video ids\[code\] 1.TeLcHFnd1Lk 2.mn7WJr0H4LQ 3.j_xmbWIo_20 4.5kq7_47yz7Y\[/code\]requested url...http://gdata.youtube.com/feeds/api/...j_xmbWIo_20|5kq7_47yz7Y&fields=entry(id,title)but the feeds are as follows\[code\] <?xml version='1.0' encoding='UTF-8'?> <feed xmlns='http://www.w3.org/2005/Atom'> <entry> <id>http://gdata.youtube.com/feeds/api/videos/TeLcHFnd1Lk</id> <title type='text'>ASP.NET Free Hosting pt1</title> </entry> <entry> <id>http://gdata.youtube.com/feeds/api/videos/j_xmbWIo_20</id> <title type='text'>How To Answer Interview Questions</title></entry> <entry> <id>http://gdata.youtube.com/feeds/api/videos/5kq7-47yz7Y</id> <title type='text'>How To Find A Job During A Recession</title> </entry> <entry> <id>http://gdata.youtube.com/feeds/api/videos/mn7WJr0H4LQ</id> <title type='text'>best 5 minecraft creations</title> </entry> </feed>\[/code\]isnt there any way to retrieve in same order as the url???
 
Top