Information is Wealth...

How to display html code in blogger or website




Just Copy the HTML that you want to display and convert it so that it can
be displayed as html in browser.


For More details refer.


http://www.plus2net.com/html_tutorial/tags-page.php

How to find build date of an asp.net assembly


How to find build date of an asp.net assembly and name of connection string 


Let us first have a label named lblversion, where we shall display the name of the connection string and build date of assembly


Code to be placed in codebehind :


lblVersion.Text = String.Format("Schema: {0}Build Date: {1}", Schema, System.IO.File.GetLastWriteTime (System.Reflection.Assembly.GetExecutingAssembly().Location).
ToShortDateString());

How to create RSS Feeds and Google Sitemap for ASP.Net MVC using LINQ to xml




The two most popular reasons why we have a XML in most of our personal websites
  1. RSS Feed

  2. Google Site Map

The above said two reasons can be be implemented using LINQ to XML


Read more...