Information is Wealth...

HDFC Limited marathahalli branch bangalore

If you are looking to visit Marathalli HDFC limited branch for Queries related to HDFC home loans.Here is the nearest Landmark for HDFC Limited branch in Marathalli, bangalore . Its beside Dominos Pizza in Marathalli.

Driving Directions:
  • From Marathalli Brand Factory : Take left from Marathalli bridge towards Krishnaraja puram, HDFC Limited is in service road after marathalli bridge, beside Dominos Pizza.

  • From Innovative Multiplex : Go below Marathalli bridge towards KR Puram, take left to service road after you cross the bridge, HDFC Limited is on the Left beside Domino's Pizza 

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());