Information is Wealth...

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...

How to implement Auto Suggest using an Auto complete Extender Control




This Auto Suggest control shall suggest the user
  1. Text based on text entered.

  2. Shall suggest you images based on the image name entered as input in the text box.

Read More...