Guilherme Cardoso, Blog EN

.NET geek

  Home  |   Contact  |   Syndication    |   Login
  21 Posts | 0 Stories | 21 Comments | 0 Trackbacks

News

Name: Guilherme Cardoso
Age: 19
Country: Portugal


pontonetpt

NetPonto

xaml pt

Twitter





Archives

October 2010 Entries

A few time ago i've write an article explaining how to use iTextSharp. Check it here: http://geekswithblogs.net/g... In this article, i'll show how to use headers. You just should follow this article if you're using iTextSharp 5.x or above. Other versions uses the object HeaderFooter. The last releases, instead of using an object to create the header, uses events. There's a list of existing events in iTextSharp:...

In this article i will show how to read feeds rss. In this example i will show it for MVC architecture but it's very easy to use it in webforms. (use the SyndicationFeed object as a datasource for an repeater for example). Let's declare our SyndicationFeed object in Model: public class BlogModel { public SyndicationFeed BlogFeed { get; set; } } In Controller we'll get the feeds. But first, we need to add new references to our project: System.ServiceModel.Syndica... e System.Xml public ActionResult...