Joined: 2/9/2010 Posts: 18
|
i entered the code for rss as i hav taken from tis site. The code as follows:
Object rssData = new Object(); Ektron.Cms.UI.CommonUI.ApplicationAPI objRss = new Ektron.Cms.UI.CommonUI.ApplicationAPI(); rssData = objRss.ecmRssSummary(142, false , "datecreated,desc", 15, "");//FolderID, Recursive, Order By, Record Per Page, Summarytype Response.ContentType = "text/xml"; Response.Write(rssData);
But m getting an error it says:
Cannot have a DOCTYPE declaration outside
of a prolog. Error processing resource
'http://localhost:4688/mss_new/rss_news.as...
can anyone help me.
|
Joined: 9/13/2006 Posts: 2367
|
Make sure you remove any HTML code from the .aspx page. Try it with nothing in the .aspx page except the @Page directive.
http://www.ektron.com/services/
|
Joined: 2/9/2010 Posts: 18
|
Thank u! I got it...
|